﻿body {
    /*background-color: #b1e3a2;*/
    background: linear-gradient(to bottom, #c8eb9b, #c8eb9b);
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
    padding: 0;
}
.page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.frame-container {
    /*max-width: 800px;*/
    max-width: 100vw;
    width: 100%;
    margin: 0 auto;
    /*padding: 20px;*/
    background-color: white;
    border-radius: 10px;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
    overflow-x: hidden;
}

/* Login Page */
.card2 {
    /*background-color: white;*/
    /*background-color: #b1e3a2;*/ /* Make the card background consistent with the page background */
    padding: 30px;
    border-radius: 15px;
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
    box-shadow: none;
    width: 90%;
    max-width: 400px;
    text-align: center;
    border: none;
}

.page-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    /*color: white;*/
    color: #525252;
}

.logo {
    width: 80px;
    margin-bottom: 15px;
}

.input-container {
    width: 100%;
    text-align: left;
    margin-bottom: 25px;
}

.input-label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    margin-left: 10px;
    color: #525252;
}

.input-box {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 16px;
    margin-bottom: 15px;
    background-color: #fff;
}

.button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.button-primary {
    background-color: #98db6d;
}

    .button-primary:hover {
        background-color: #85c45a !important;
    }

.button-secondary {
    background-color: #85c45a;
    /*color: #98db6d;*/
    /*color: #d2e5b9;*/
    color: white;
    /*border: 2px solid #98db6d;*/
    border: 1px solid white;
}

    .button-secondary:hover {
        /*background-color: #98db6d !important;*/
        background-color: #85c45a !important;
        color: white !important;
        border: 1px solid #85c45a !important;
    }

.button-3 {
    /*background-color: #b1e3a2;*/
    background-color: #98db6d;
    border: 1px solid white;
}
    .button-3:hover {
        background-color: #85c45a !important;
        color: white !important;
        border: 1px solid #85c45a !important;
    }

.forgot-password {
    font-size: 14px;
    /*color: #666;*/
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

    .forgot-password:hover {
        color: #85c45a;
    }

.signup-container {
    margin-top: 15px;
    margin-bottom: 5px;
    color: white;
}

.error-message {
    margin-top: 10px;
    color: red;
}

.remind-message {
    margin-top: 10px;
    color: white;
}

.spinner-container {
    display: flex;
    justify-content: center;
}
.spinner-border {
    margin-top: 10px;
}
.forgot-pwd-btn {
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    font-weight: bold;
}

    .forgot-pwd-btn:hover {
        color: #525252;
    }
/* Login Page */

/* Sigin page */
.subtitle {
    font-size: 18px;
}

.input-container2 {
    width: 100%;
    text-align: left;
    /*margin-bottom: 25px;*/
}

.input-box2 {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 16px;
    /*margin-bottom: 15px;*/
    margin-bottom: 2px;
    background-color: #fff;
}

.input-box-msg {
    color: #525252;
}

.input-box-msg p {
    font-size: 12px;
}
/* Sigin page */

/* Main Page*/
.main-page {
    background-color: white;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    /*padding-top: 50px;*/
}
/* Recent Transactions Section */
.recent-transactions h3 {
    color: #ff6600;
    font-weight: bold;
    font-size: 18px;
    margin: 20px 0;
}

    .recent-transactions h3 span {
        color: #ff6600;
        font-size: 14px;
    }

.transaction-item {
    display: flex;
    background-color: white;
    border-radius: 8px;
    padding: 16px 12px;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px; /* Add spacing between items */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

    .transaction-item:hover {
        transform: translateY(-5px); /* Hover effect */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

.transaction-icon {
    background-color: white;
    padding: 0.5rem;
    margin-right: 1rem;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Add shadow */
}

    .transaction-icon i {
        font-size: 16px;
        color: #7c3aed; /* Text color */
    }

.transaction-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
    color: #ffffff;
}

.transaction-name {
    font-size: 18px;
    font-weight: bold;
    color: #4b5563;
    margin-bottom: 5px;
}

.transaction-date {
    font-size: 14px;
    color: #4b5563; /* Light gray text color */
}

.transaction-value {
    color: #fb923c; /* Orange text color */
    font-weight: bold;
    font-size: 1.25rem;
    white-space: nowrap;
    text-align: right; /* Align value to the right */
}
/* Main Page*/


/* OTP page */
.otp-input-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.otp-input {
    width: 50px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    border: 2px solid #98db6d;
    border-radius: 10px;
    outline: none;
    transition: all 0.3s ease;
}

    .otp-input:focus {
        border-color: #85c45a;
        background-color: #f0fff0;
    }

.resend-text {
    margin-top: 20px;
    color: #525252;
}

.resend-btn {
    background: none;
    border: none;
    color: #007bff;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

    .resend-btn:hover {
        color: #0056b3;
    }
 /* OTP page */

/*Forgot Pwd Page*/
.forgotpwd-page-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
    /*color: #525252;*/
}
.forgotpwd-subtitle {
    font-size: 16px;
}

label {
    display: block;
    text-align: left;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.row-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.left-column {
    flex: 1;
}

.mobile-input {
    width: 100%;
    padding: 0.6rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.otp-button {
    width: 100%;
    transition: background-color 0.3s ease;
    padding: 0.6rem 1rem;
    border: none;
    background-color: #85c45a;
    color: white;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid white;
}
    .otp-button:hover {
        /*background-color: #98db6d !important;*/
        background-color: #85c45a !important;
        color: white !important;
        border: 1px solid #85c45a !important;
    }

.forgotpwd-input-box-msg {
    text-align: left;
    margin-left: 10px;
    font-size: 0.8rem;
    color: #777;
    margin-top: 0.5rem;
}

.otp-code-inputs {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
}

    .otp-code-inputs input {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        text-align: center;
        border-radius: 8px;
        border: 1px solid #ccc;
    }
/*Forgot Pwd Page*/

/* Booking Page */
.booking-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white; /* Only make the background of BookingPage white */
    z-index: -1; /* Put it at the bottom layer to ensure that it does not cover the content */
}
.booking-page {
    background-color: white;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    /*padding-top: 140px;*/
}

.booking-header {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    grid-template-rows: repeat(2, auto); /* 2 lines */
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
}

.booking-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 10px;
    background-color: #f8f8f8;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .card:hover {
        background-color: #e0e0e0;
        transform: scale(1.05);
    }

    .card i {
        font-size: 20px;
        margin-right: 10px;
    }

    .card span {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 5px;
    }

.section-title {
    font-size: 18px;
    font-weight: bold;
    color: #525252;
    text-align: left;
    margin-bottom: 20px;
    width: 100%;
}

.pax-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.pax-btn {
    background-color: #ff6600;
    color: white;
    border: none;
    font-size: 24px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .pax-btn:hover {
        background-color: #e65c00;
    }

.pax-count {
    color: black;
    font-size: 24px;
}

.date-picker-container {
    width: 100%;
    display: flex;
    min-height: 55px;
}

.custom-date-picker {
    flex-grow: 1; /* Make it fill the entire available space */
    width: 100%;
    margin-bottom: 10px;
}

.custom-date-picker-text {
    font-weight: 800;
}

/*.date-scroll-container {
        overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
}*/

.date-card-list {
    display: flex;
    gap: 10px;
}

.date-card {
    flex: 0 0 auto;
    width: 80px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid #ff6600;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    transition: 0.3s;
    padding: 5px 0;
    color: #525252;
}
    .date-card:hover {
        /*background-color: #E6E6FA;*/ /* Light purple on hover */
        background-color: #FFEBDA;
    }

    .date-card.selected {
        background: #ff6600;
        color: white;
        font-weight: bold;
    }

        .date-card.selected .month {
            /*background: #ff6600;*/
            color: white;
            font-weight: bold;
        }

        .date-card.selected .weekday {
            /*background: #ff6600;*/
            color: white;
            font-weight: bold;
        }

    .date-card .month {
        font-size: 12px;
        color: gray;
        font-weight: normal;
    }

    .date-card .day {
        font-size: 24px;
        font-weight: bold;
    }

    .date-card .weekday {
        font-size: 12px;
        color: gray;
    }

.pax-info-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 10px 0px;
}

.pax-text {
    font-size: 12px;
    color: #ff6600;
    text-align: center;
}

    .pax-text strong {
        display: block;
        font-size: 12px;
    }

.disclaimer-container {
    width: 100%;
    margin-top: 20px;
}

.disclaimer {
    font-size: 12px;
    color: red;
    text-align: left;
    max-width: 400px;
}
    .disclaimer p {
        color: black;
    }

.next-button {
    width: 100%;
    max-width: 400px; /* Make sure the Next button is the same width as the image */
    background-color: #ff6600;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: bold;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
}

    .next-button:hover {
        background-color: #e65c00;
    }

.warning-message {
    color: red;
}

/*time Slot*/
.time-slot-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding-bottom: 20px;
}

.time-slot-card {
    width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 2px solid #8A2BE2;*/ /* Purple border */
    border: 2px solid #98db6d; /* Green border */
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background-color: white;
    /*color: #8A2BE2;*/
    color: #3a5a1a;
}

    .time-slot-card:hover {
        /*background-color: #E6E6FA;*/ /* Light purple on hover */
        background-color: #EAF8E0;
    }

    .time-slot-card.selected {
        /*background-color: #8A2BE2;*/ /* Darker purple */
        background-color: #98db6d;
        color: white;
        font-weight: bold;
    }
/* Booking Page */


/* Room Hour Page */
.frame-container3 {
    height: 100vh;
    width: 100vw;
    overflow-y: auto;
    overflow-x: hidden;
}
/*.room-hour-page::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;*/ /* Only make RoomHourPage background white */
    /*z-index: -1;*/ /* Put it at the bottom layer to ensure that it does not cover the content */
/*}*/

.room-hour-page {
    background-color: white;
    /*width: 100vw;*/
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 70px;
}
.room-card {
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 10px;
    /*background-color: #f8f8f8;*/
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 1px solid #D3D3D3;
}

    .room-card i {
        font-size: 20px;
        margin-right: 10px;
    }

    .room-card span {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 5px;
    }

.available-room-text {
    /*font-size: 12px;*/
    color: #ff6600;
    text-align: center;
    padding: 10px 0px;
}

    .available-room-text strong {
        display: block;
        /*font-size: 12px;*/
    }

.scrollable-options {
    display: flex;
    overflow-x: auto; /* Enable horizontal scrolling */
    gap: 20px;
    padding-bottom: 10px;
}

.room-select-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 2px solid #8A2BE2;*/ /* Purple border */
    border: 2px solid #ff6600; /* Green border */
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background-color: white;
    /*color: #8A2BE2;*/
    color: #525252;
    padding: 10px 20px;
}

    .room-select-card:hover {
        /*background-color: #E6E6FA;*/ /* Light purple on hover */
        background-color: #FFEBDA;
    }

    .room-select-card.selected {
        /*background-color: #8A2BE2;*/ /* Darker purple */
        background-color: #ff6600;
        color: white;
        font-weight: bold;
    }

.room-caption {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    font-size: 16px;
    font-weight: bold;
}

.room-price {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
    white-space: nowrap; /* Make sure the text does not wrap */
}

.amount {
    font-weight: bold;
}

.room-card2 {
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid #ddd;
    color: black;
    width: 100%;
    /*max-width: 300px;*/
}

.summary-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Keep content neatly arranged */
.summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
}

/* Icon Style */
.summary-icon {
    font-size: 18px;
    color: #8A2BE2; /* Make the icon purple */
    width: 30px;
    text-align: center;
}

.summary-label {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

/* Right value alignment */
.summary-value {
    font-size: 14px;
    font-weight: bold;
    color: black;
    text-align: right;
}

/* The last line does not need a bottom line */
.summary-item:last-child {
    border-bottom: none;
}

.total-amount {
    margin-top: 12px;
    text-align: right;
    font-size: 16px;
    font-weight: bold;
}
.payment-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 12px 15px;
    margin-top: 15px;
    border: 1px solid #D3D3D3;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom:120px;
}

.total-amount {
    text-align: left;
}

.amount-label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    display: block;
}

.amount-value {
    font-size: 18px;
    font-weight: bold;
    color: #c32e4e;
}

.tax-note {
    font-size: 12px;
    color: gray;
    margin-top: -5px;
}

.pay-button {
    background-color: #ff6600;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .pay-button i {
        font-size: 18px;
    }

    .pay-button:hover {
        background-color: #E64A19;
    }
/* Room Hour Page */


/* Header Bar */
.header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    background-color: #A7DB94 !important;
    padding: 10px 15px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.back-button {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    margin-right: 10px;
}

.header-title {
    flex-grow: 1;
    text-align: center;
}
/* Header Bar */

/* Home Page */
.room-theme-label {
    font-size: 18px;
    font-weight: bold;
    color: #525252;
    text-align: left;
    margin: 20px 0px;
    width: 100%;
}
/* Home Page */

/*Booking History Page*/
.frame-container2 {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.history-page {
    background-color: white;
    min-height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
    margin-bottom: 60px;
}

.tab-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    display: flex;
    margin-bottom: 16px;
    border-bottom: 1px solid #ddd;
}

.tab-button {
    flex: 1;
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    color: #888;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

    .tab-button.active {
        color: #6f3fd4;
        border-bottom: 3px solid #6f3fd4;
    }

.booking-card {
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    padding: 6px 12px;
    /*box-shadow: 0 4px 12px rgba(0,0,0,0.15);*/
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2)
}

.booking-content {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: stretch;
    padding: 8px 0;
    overflow: hidden;
}

    .booking-content::before {
        content: "";
        position: absolute;
        left: calc(100% - 30%);
        top: 5%;
        bottom: 5%;
        width: 1px;
        background-image: linear-gradient(#ccc 33%, rgba(255,255,255,0) 0%);
        background-size: 10px 8px;
        background-repeat: repeat-y;
    }

.booking-info {
    flex: 2;
    font-size: 14px;
    max-width: 65%;
}

.room-type {
    /*    flex: 1;
    text-align: center;
    padding: 10px 6px;
    white-space: nowrap;
    color: #555;*/
    flex: 1;
    max-width: 30%;
    text-align: center;
    padding: 10px 6px;
    white-space: nowrap;
    color: #555;
    overflow: hidden;
    text-overflow: ellipsis;
    align-content: center;
}

.room-value {
    /*    font-size: 16px;
    font-weight: bold;
    color: #d13d3d;*/
    font-size: 16px;
    font-weight: bold;
    color: #d13d3d;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
}

.booking-field {
    margin-bottom: 6px;
}

.label {
    display: block;
    color: #999;
    font-size: 13px;
}

.label-red {
    display: block;
    color: #d13d3d;
    font-weight: bold;
}

.value {
    display: block;
    color: #444;
}

.value-bold {
    display: block;
    color: #000;
    font-weight: bold;
}

.time-red {
    color: #d13d3d;
    font-weight: 600;
    margin-left: 4px;
}

/*Booking History Page*/

/*Room Gallery Page*/
.room-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    width: 100%;
    /*height: 200px;*/
    aspect-ratio: 16 / 9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.room-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-card-text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: white;
    /*font-size: 14px;*/
    font-weight: bold;
}
.room-card-text span{
    font-size: 14px;
}

.room-name {
    text-align: left;
}

.room-pax {
    text-align: right;
}
/*Room Gallery Page*/

/* Setting Page */
.settings-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    margin: 40px auto 0 auto;
    max-width: 600px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.settings-title {
    text-align: center;
    color: #525252;
    font-weight: bold;
    margin-bottom: 16px;
    font-size: 24px;
}

.settings-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.settings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    .settings-item:hover {
        background-color: #f0f0f0;
    }

.settings-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
}

    .settings-left i {
        font-size: 18px;
        color: #6a1b9a;
    }

.settings-right i {
    font-size: 14px;
    color: #999;
}

.version-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-align: center; 
    margin-top: 1rem;
}
/* Setting Page */

/* Edit Profile Page*/
.edit-profile-page {
    /*background: linear-gradient(to bottom, #c8eb9b, #c8eb9b);*/
    background-color: white;
    min-height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
    margin-bottom: 60px;
}
.edit-profile-title {
    text-align: center;
    color: #525252;
    font-weight: bold;
    margin-top: 60px;
    margin-bottom: 16px;
    font-size: 24px;
}
.button2 {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}
/* Edit Profile Page*/

/* Reset Password Page*/
.changepwd-page {
    background-color: white;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}
.forgotpwd-page-title2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    /*color: white;*/
    color: #525252;
}
.forgotpwd-subtitle2 {
    font-size: 16px;
    color: #525252;
}
/* Reset Password Page*/

/* Contact Us Page */
.contact-us-card {
    /*background-color: white;*/
    /*background-color: #b1e3a2;*/ /* Make the card background consistent with the page background */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /*box-shadow: none;*/
    width: 90%;
    max-width: 400px;
    text-align: center;
    border: none;
}
.contact-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.contact-label {
    width: 90px;
    font-weight: 500;
    color: #333;
    flex-shrink: 0;
}

.contact-value {
    flex: 1;
    color: #555;
    padding-left: 10px;
    word-break: break-word;
}

.button2 {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    margin: 10px 0px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}
/* Contact Us Page */

/* Bottom Bar */
.main-footer-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 10px 0;
    border-top: 2px solid #ddd;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

    .main-footer-bottom ul {
        list-style: none;
        display: flex;
        justify-content: space-around;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .main-footer-bottom li {
        flex: 1;
        text-align: center;
    }

    .main-footer-bottom a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: black;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
    }

        .main-footer-bottom a i {
            font-size: 22px;
            transition: color 0.3s ease-in-out;
        }

        .main-footer-bottom a span {
            margin-top: 5px;
            font-size: 12px;
        }

        .main-footer-bottom a.active,
        .main-footer-bottom a:hover {
            color: #98db6d;
        }

/* Highlight the Booking button */
.shop-btn a {
    color: #98db6d !important;
    font-weight: bold;
}

/* Default selected state (JS control) */
.main-footer-bottom a.active i {
    color: #98db6d; /* Icon highlight */
}
/* Bottom Bar */

/*Error Message Modal*/
.modal-body {
    color: black;
}
.modal-header.bg-danger {
    background-color: #dc4c64 !important;
}
/*Error Message Modal*/

/*Success Message Modal*/
.modal-header.bg-success {
    background-color: #66bb6a !important;
}
/*Success Message Modal*/

/*Confirm Message Modal*/
.confirm-yes-btn {
    background-color: #ff6600;
    border-color: #ff6600;
}

    .confirm-yes-btn:hover,
    .confirm-yes-btn:focus {
        background-color: #e65c00;
        border-color: #e65c00;
    }
/*Confirm Message Modal*/

.sidebar-menu {
    display: none;
}
@media screen and (min-width: 768px) {
    body {
        background: white;
    }
    .login-container {
        /*background-color: #b1e3a2;*/
        background: linear-gradient(to bottom, #c8eb9b, #c8eb9b);
        font-family: Arial, sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        margin: 0;
        width: 100%;
        overflow-x: hidden;
        padding: 0;
    }
    .frame-container {
        max-width: 800px;
        /*max-width: 100vw;*/
        width: 100%;
        margin: 0 auto;
        padding: 20px;
        background-color: white;
        border-radius: 10px;
        /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
        overflow-x: hidden;
    }

    /* Main page */
    .main-page {
        width: auto;
        /*margin-top: 90px;*/
    }
    /* Main page */

    /*Booking page*/
    .booking-page {
        width: auto;
        /*margin-top: 70px;*/
    }
    .booking-header {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 columns, each with equal width */
        gap: 10px;
        max-width: 600px;
        margin: auto; /* Center */
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 18px;
        font-weight: bold;
        color: #525252;
        text-align: center;
        margin-bottom: 20px;
        width: 100%;
    }

    .scrollable-options {
        scrollbar-width: auto; /* Firefox displays scrollbar */
        -ms-overflow-style: auto; /* IE displays scrollbar */
    }

        /* Custom scroll bar style */
        .scrollable-options::-webkit-scrollbar {
            height: 8px; /* Scroll bar height */
        }

        .scrollable-options::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 5px;
        }

        .scrollable-options::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 5px;
        }

            .scrollable-options::-webkit-scrollbar-thumb:hover {
                background: #555;
            }

    .disclaimer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .disclaimer {
        text-align: center;
    }
    /*Booking page*/

    /*Select Room Hour page*/
    .frame-container3 {
        max-width: 800px;
        /*max-width: 100vw;*/
        width: 100%;
        margin: 0 auto;
        background-color: white;
        border-radius: 10px;
        overflow-x: hidden;
    }
    .room-hour-page {
        background-color: white;
        /*width: 100vw;*/
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow-y: auto;
        overflow-x: hidden;
        /*padding-top: 170px;*/
    }
    /*Select Room Hour page*/

    .main-footer-bottom {
        display: none;
    }

    .sidebar-menu {
        display: block;
        width: 200px;
        background-color: #222;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        padding: 20px 0;
        transition: all 0.3s ease;
        box-shadow: 3px 0 10px rgba(0, 0, 0, 0.2);
    }

        .sidebar-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .sidebar-menu ul li {
                margin: 10px 0;
            }

                .sidebar-menu ul li a {
                    color: white;
                    text-decoration: none;
                    font-size: 16px;
                    padding: 12px 20px;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    transition: background 0.3s ease-in-out;
                    /*border-radius: 4px;*/
                }

                    .sidebar-menu ul li a i {
                        font-size: 20px;
                    }

                    .sidebar-menu ul li a:hover {
                        /*background: #ff6600;*/
                        background: #EAF8E0;
                        color: #525252;
                    }

                    .sidebar-menu ul li a.active {
                        /*background: #ff4500;*/
                        background: #98db6d;
                        font-weight: bold;
                    }

    .header-bar {
        background: #a8db8f;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 200px;
        width: calc(100% - 200px);
        height: 50px;
        z-index: 1000;
    }

    .back-button {
        background: none;
        border: none;
        font-size: 18px;
        cursor: pointer;
    }

    .header-title {
        font-size: 18px;
        font-weight: bold;
    }

    /*History Page*/
    .frame-container2 {
        max-width: 800px;
        /*max-width: 100vw;*/
        width: 100%;
        margin: 0 auto;
        background-color: white;
        border-radius: 10px;
        overflow-x: hidden;
    }
    /*History Page*/
}

@media screen and (max-width: 767px) {
    .header-bar {
        left: 0 !important;
        width: 100% !important;
    }
}
