.booking-sys-apply-coupon-btn {
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 10px 15px;
}
.booking-sys-apply-coupon-btn:hover {
    background-color: #218838;
}
.booking-sys-arrow-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}
.booking-sys-arrow-rotated {
    transform: rotate(180deg);
}
.booking-sys-calendar-container {
    margin-top: 10px;
    text-align: center;
}
.booking-sys-calendar-day {
    -webkit-tap-highlight-color: transparent;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    padding: 6px;
    text-align: center;
    transition: background 0.3s ease;
}
.booking-sys-calendar-day.disabled,
.booking-sys-calendar-day.holiday,
.booking-sys-calendar-day.sunday {
    color: #bbb;
    cursor: not-allowed;
}
.booking-sys-calendar-day:hover {
    background: #f4f4f4;
}
.booking-sys-calendar-day.selected {
    background: #28a745;
    color: white;
}
.booking-sys-calendar-day.today {
    border: 2px solid #28a745;
}
.booking-sys-calendar-days {
    display: grid;
    gap: 3px;
    grid-template-columns: repeat(7, 1fr);
}
.booking-sys-calendar-grid {
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    padding: 5px;
}
.booking-sys-calendar-header {
    align-items: center;
    display: flex;
    font-size: 1.1em;
    font-weight: bold;
    justify-content: space-between;
    margin-bottom: 5px;
}
.booking-sys-calendar-nav {
    background: none;
    border: none;
    color: black;
    cursor: pointer;
    font-size: 1.4em;
}
.booking-sys-calendar-nav:disabled {
    color: #bbb;
    cursor: not-allowed;
}
.booking-sys-calendar-weekdays {
    background: #f4f4f4;
    display: grid;
    font-weight: bold;
    grid-template-columns: repeat(7, 1fr);
    padding: 4px;
}
.booking-sys-checkbox-group {
    align-items: start;
    display: flex;
    font-size: 0.9em;
    gap: 10px;
    margin-bottom: 10px;
}
.booking-sys-checkbox-group input {
    cursor: pointer;
    height: 18px;
    width: 18px;
}
.booking-sys-checkbox-group label {
    cursor: pointer;
    line-height: 1.4;
}
.booking-sys-coupon-container {
    margin-bottom: 15px;
}
.booking-sys-coupon-input {
    border: 1px dashed #28a745;
    border-radius: 5px;
    flex: 1;
    font-size: 16px;
    padding: 10px;
}
.booking-sys-coupon-status {
    font-size: 1.2rem;
    font-weight: bold;
}
.booking-sys-coupon-wrapper {
    align-items: center;
    display: flex;
    gap: 10px;
}
.booking-sys-disclaimer {
    font-size: 0.9em;
    line-height: 1.4;
    margin-bottom: 10px;
}
.booking-sys-footer {
    align-items: center;
    background: rgba(208, 255, 219, 0.95);
    bottom: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    font-family: Arial, sans-serif;
    height: 90px;
    justify-content: space-between;
    left: 0;
    padding: 18px;
    position: fixed;
    right: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 20;
}
.booking-sys-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.booking-sys-footer-btn {
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    color: white !important;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 14px;
}
.booking-sys-footer-btn:hover {
    background-color: #218838;
    color: white !important;
}
.booking-sys-footer-btn:disabled {
    background-color: #ccc;
    color: #888;
    cursor: not-allowed;
    opacity: 0.6;
}
.booking-sys-btn-nothrills {
    background-color: #555555;
    border: none;
    border-radius: 5px;
    color: #fff !important;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 14px;
    transition: background-color 0.2s ease-in-out;
}
.booking-sys-btn-nothrills:hover {
    background-color: #444444;
    color: #fff !important;
}
.booking-sys-btn-nothrills:disabled {
    background-color: #cccccc; /* Light grey */
    color: #fff;
    cursor: not-allowed;
    opacity: 0.6;
}
.booking-sys-btn-golden-choice {
    background-color: #d4af37; /* Rich gold */
    border: none;
    border-radius: 5px;
    color: white !important; /* Dark text for contrast */
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 14px;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15); /* Soft glow effect */
}

.booking-sys-btn-golden-choice:hover {
    background-color: #c39528; /* Slightly darker gold */
    transform: scale(1.05); /* Slight pop effect */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2); /* Enhanced glow */
}

.booking-sys-btn-golden-choice:disabled {
    background-color: #ddd; /* Light grey */
    color: #aaa;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}
.booking-sys-footer-info {
    font-size: 1rem;
    font-weight: normal;
    padding-left: 10px;
}
.booking-sys-footer-info strong {
    font-weight: bold;
}
.booking-sys-form-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 500px;
    padding: 20px;
}
.booking-sys-group-header {
    align-items: center;
    background-color: #f4f4f4;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    font-weight: normal;
    justify-content: space-between;
    padding: 10px;
}
.booking-sys-input-group {
    display: flex;
    flex: 1;
    flex-direction: column;
    margin-bottom: 15px;
}
.booking-sys-input-group input {
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    padding: 10px;
    width: 100%;
}
.booking-sys-input-group label {
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 5px;
}
.booking-sys-input-group textarea {
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1em;
    max-height: 150px;
    min-height: 50px;
    padding: 10px;
    resize: vertical;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    width: 100%;
}
.booking-sys-input-group textarea:focus {
    border-color: #28a745;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.3);
    outline: none;
}
.booking-sys-input-row {
    display: flex;
    gap: 15px;
}
.booking-sys-p {
    font-size: 1em;
    margin-bottom: 15px;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .booking-sys-p {
        text-align: center;
    }
}
.booking-sys-p-left {
    font-size: 1em;
    margin-bottom: 15px;
    text-align: left;
}
@media screen and (min-width: 768px) {
    .booking-sys-p-left {
        text-align: left;
    }
}
.booking-sys-select {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    padding: 10px;
    width: 100%;
}
.booking-sys-service-box {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    max-width: 500px;
    padding: 10px;
    text-align: center;
    width: 100%;
}
.booking-sys-service-details {
    display: flex;
    flex-direction: column;
    font-weight: normal;
}
.booking-sys-service-group {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}
.booking-sys-service-info {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    width: 100%;
}
.booking-sys-service-item {
    align-items: center;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 10px;
    padding: 10px;
}
.booking-sys-service-item:last-child {
    border-bottom: none;
}
.booking-sys-service-list {
    display: none;
    padding: 10px;
}
.booking-sys-service-meta {
    color: #333;
    font-size: 0.9em;
}
.booking-sys-wrapper {
    font-family: Arial, sans-serif;
}
.booking-sys-summary-box {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.booking-sys-summary-table {
    font-family: Arial, sans-serif;
    width: 100%;
    border-collapse: collapse;
    max-width: 500px;
    padding: 20px;
}
.booking-sys-summary-table th, .booking-sys-summary-table td {
    padding: 10px;
    text-align: left;
    vertical-align: top;
    font-size: 0.95em;
}
.booking-sys-summary-table th {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    text-align: right;
    font-weight: bold;
    padding-right: 10px;
}
.booking-sys-summary-table tr {
    border-bottom: 1px solid #ddd;
}
.booking-sys-ical-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}
.booking-sys-ical-btn {
    background-color: #28a745;
    color: white !important;
    padding: 14px;
    font-size: 1.1rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.booking-sys-ical-btn i {
    font-size: 1.2rem;
}
.booking-sys-ical-btn:hover {
    background-color: #218838;
    color: white !important;
}