body {
    font-family: Arial, sans-serif;
    background-color: #fff; /* White background */
    color: #000; /* Black text color */
    margin: 0;
    padding: 0;
}

.costCalculator-outer {
    display: flex;
    max-width: 1140px;
    margin: 50px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    gap: 30px; /* Add spacing between form and right section */
}

.form {
    flex: 2; /* Allow form to take more space */
    padding: 20px;
}

.form h2 {
    color: #fb2a6b; /* Heading color */
    font-size: 1.8em; /* Increase font size */
}

label {
    display: block;
    margin: 10px 0 5px;
    color: #000;
}

input, select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #8f2ac4;
    border-radius: 4px;
    background-color: #f8f8f8; /* Subtle background for inputs */
    transition: border-color 0.3s ease; /* Transition for border hover */
}

input:focus, select:focus {
    border-color: #fb2a6b; /* Focus color */
    outline: none;
}

button {
    background-color: #fb2a6b;
    color: #fff;
    padding: 12px 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 16px;
    font-weight: bold;
}

button:hover {
    background-color: #8f2ac4;
}

#successMessage {
    text-align: center;
    margin-top: 20px;
    font-size: 1.2em;
    color: green; /* Success message in green */
}

#summary {
    margin-top: 10px;
    font-size: 1em; /* Adjust font size */
    line-height: 1.5; /* Improve readability */
    padding-left: 20px;
}

#totalCost {
    font-weight: bold;
    font-size: 2em;
    color: #fff;
    margin-top: 15px;
    display: inline-block;
}

.right-section {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
    height: max-content; /* Ensure right section resizes based on content */
    border-left: 4px solid #fb2a6b; /* Left border highlight */
}

.right-section h2, .right-section h3 {
    margin-bottom: 15px;
    color: #8f2ac4; /* New color for titles */
    padding-left: 20px;
}

.right-section h3 {
    font-size: 1.2em;
    background-color: #5F6368;
    padding: 20px 0;
    margin: 0;
    color: #fff;
    padding-left: 20px;
}

.right-section #totalCost {
    font-size: 1.8em; /* Slightly larger font for total cost */
}

/***********************/

input[type=range] {
    height: 26px;
    -webkit-appearance: none;
    margin: 10px 0;
    width: 100%;
  }
  input[type=range]:focus {
    outline: none;
  }
  input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 1px 1px 1px #50555C;
    background: #50555C;
    border-radius: 14px;
    border: 0px solid #000000;
  }
  input[type=range]::-webkit-slider-thumb {
    box-shadow: 0px 0px 0px #000000;
   
    height: 16px;
    width: 40px;
    border-radius: 12px;
    background: #fb2a6b;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -5px;
  }

  #numEmployees,#relocatingEmployees {
    border: none;
  }

  
  .workingWithClients-buttons {
    display: flex;
    gap: 10px; /* Space between buttons */
}

.workingWithClients-btn {
    background-color: #fff; /* Default button background */
    border: 1px solid #8f2ac4; /* Border color */
    color: #8f2ac4; /* Text color */
    padding: 10px 20px; /* Padding for buttons */
    cursor: pointer; /* Cursor style */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s, color 0.3s; /* Transition effect */
    font-weight: 400;
}

.workingWithClients-btn:hover {
    background-color: #8f2ac4; /* Background color on hover */
    color: #fff; /* Text color on hover */
}

.workingWithClients-btn.active {
    background-color: #8f2ac4; /* Active button background */
    color: #fff; /* Active text color */
}

.officeType-btn, .gmResident-btn, .licenseType-btn, .financialForecast-btn {
    background-color: #fff; /* Default button background */
    border: 1px solid #8f2ac4; /* Border color */
    color: #8f2ac4; /* Text color */
    padding: 10px 20px; /* Padding for buttons */
    cursor: pointer; /* Cursor style */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s, color 0.3s; /* Transition effect */
    font-weight: 400;
    margin-top: 10px;
}

.officeType-btn:hover, .gmResident-btn:hover, .licenseType-btn:hover, .financialForecast-btn:hover {
    background-color: #8f2ac4; /* Background color on hover */
    color: #fff; /* Text color on hover */
}

.officeType-btn.active, .gmResident-btn.active, .licenseType-btn.active, .financialForecast-btn.active {
    background-color: #8f2ac4; /* Active button background */
    color: #fff; /* Active text color */
}

.blur {
    filter: blur(5px); /* Adjust the blur amount as needed */
    pointer-events: none; /* Prevent interaction when blurred */
}