.schedule-content {
    background-color: #f7f7f7;
    padding: 50px 0;
}
.schedule-form-container {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}
.schedule-form-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #1e1e1e;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
.form-group input[type="date"],
.form-group input[type="number"],
.form-group select,
.form-group input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.checkbox-group {
    margin-bottom: 15px;
}
.checkbox-group label {
    display: flex;
    align-items: center;
}
.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}
#totalPrice {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    text-align: right;
}
.orange-button {
    background-color: #f35525;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    display: block;
    width: 100%;
    transition: all 0.3s;
}
.orange-button:hover {
    background-color: #1e1e1e;
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.custom-select__trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    font-size: 16px;
    font-weight: 300;
    color: #3b3b3b;
    height: 40px;
    line-height: 40px;
    background: #ffffff;
    cursor: pointer;
    width: 100%;
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ddd;
    border-top: 0;
    background: #fff;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden; /* Hide horizontal scrollbar */
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.custom-option {
    position: relative;
    display: block;
    padding: 10px 22px;
    font-size: 16px;
    font-weight: 300;
    color: #3b3b3b;
    cursor: pointer;
    transition: all 0.5s;
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden; /* Hide overflowing text */
    text-overflow: ellipsis; /* Show ellipsis for overflowing text */
}

.custom-option:hover {
    background-color: #f0f0f0;
}

/* Scrollbar styles */
.custom-options::-webkit-scrollbar {
    width: 10px;
}

.custom-options::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.custom-options::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

.custom-options::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* For Firefox */
.custom-options {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.custom-option:hover {
    background-color: #f0f0f0;
}

/* Scrollbar styles */
.custom-options::-webkit-scrollbar {
    width: 10px;
}

.custom-options::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.custom-options::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

.custom-options::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* For Firefox */
.custom-options {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.arrow {
    position: relative;
    height: 15px;
    width: 15px;
}

.arrow::before, .arrow::after {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 0.15rem;
    height: 100%;
    transition: all 0.5s;
}

.arrow::before {
    left: -5px;
    transform: rotate(45deg);
    background-color: #394a6d;
}

.arrow::after {
    left: 5px;
    transform: rotate(-45deg);
    background-color: #394a6d;
}

.open .arrow::before {
    left: -5px;
    transform: rotate(-45deg);
}

.open .arrow::after {
    left: 5px;
    transform: rotate(45deg);
}

.custom-select__search {
    width: calc(100% - 44px);
    margin: 10px 22px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

/* reservation.css */
#discountContainer {
    display: flex;
    flex-direction: column; /* Stack label container and slider vertically */
    gap: 10px;              /* Space between rows */
    margin: 0;              /* Remove extra margin if any */
}

/* New container for the label and percentage value */
#labelContainer {
    display: flex;
    justify-content: space-between; /* Label left, percentage right */
    align-items: center;
}

/* Style for the label */
#labelContainer label {
    margin: 0;
    font-weight: 500;  /* A bit bolder for a professional look */
    color: #333;
}

/* Style for the percentage value */
#discountValue {
    font-weight: 600;
    color: #FFA500; /* Matches the slider thumb color */
}

/* Slider styling */
#percentageDiscount {
    -webkit-appearance: none;
    width: 100%;  /* Let it fill the container */
    height: 8px;
    border-radius: 4px;
    background: #e0e0e0;
    outline: none;
    margin: 0;
    transition: background 0.3s ease;
}

/* Slider thumb styling (Chrome, Safari, Edge) */
#percentageDiscount::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #FFA500;
    border: 2px solid #fff;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Slider thumb styling (Firefox) */
#percentageDiscount::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #FFA500;
    border: 2px solid #fff;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

  