/* /Components/Layout/Footer.razor.rz.scp.css */
.footer[b-xo1y5h87pz] {
    flex-shrink: 0;
    background-color: #f8f8f8; /* Subtle background */
    padding: 20px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05); /* Light shadow */
}

    .footer p[b-xo1y5h87pz], .footer a[b-xo1y5h87pz] {
        font-size: 12px;
        color: #6c757d; /* Muted gray color */
        margin-bottom: 5px;
        text-decoration: none;
    }

        .footer a:hover[b-xo1y5h87pz] {
            color: #007bff; /* Bright blue on hover */
        }

    .footer ul[b-xo1y5h87pz] {
        padding: 0;
        margin: 0;
        list-style: none; /* Clean lists */
    }

        .footer ul li[b-xo1y5h87pz] {
            margin-bottom: 8px; /* Space between items */
        }

@media (max-width: 768px) {
    .footer .row[b-xo1y5h87pz] {
        flex-direction: column; /* Stack items for smaller screens */
        text-align: center;
    }

    .footer .col-md-4[b-xo1y5h87pz] {
        margin-bottom: 20px; /* Add spacing for mobile view */
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */

.page-wrapper[b-8rrw3ubb8g] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content[b-8rrw3ubb8g] {
    flex: 1 0 auto;
    background-color: #f8f8f8; /* Light, neutral background */
}

.footer[b-8rrw3ubb8g] {
    flex-shrink: 0;
    background-color: #ffffff;
    box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.05);
}

.error-ui[b-8rrw3ubb8g] {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fef9e7; /* Softer yellow */
    color: #333;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-size: 14px;
}

    .error-ui .reload-link[b-8rrw3ubb8g] {
        color: #ff5a5f; /* Airbnb-like red */
        text-decoration: underline;
        margin-left: 10px;
    }

    .error-ui .dismiss[b-8rrw3ubb8g] {
        cursor: pointer;
        margin-left: 15px;
        font-weight: bold;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Base navbar */
.navbar[b-ktjobcrsss] {
    padding: 6px 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all .2s ease;
    font-family: 'Inter', system-ui, sans-serif;
    min-height: 72px;
}

/* Logo */
.logo-img[b-ktjobcrsss] {
    height: 80px; /* larger but not overwhelming */
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform .2s ease;
}

    .logo-img:hover[b-ktjobcrsss] {
        transform: scale(1.05);
    }

/* Nav links */
.navbar-nav .nav-link[b-ktjobcrsss] {
    font-size: 16px;
    font-weight: 600;
    padding: 8px 14px;
    margin: 0 4px;
    color: #1a1a1a;
    border-radius: 6px;
    transition: color .15s ease, background .15s ease;
}

    .navbar-nav .nav-link:hover[b-ktjobcrsss],
    .navbar-nav .nav-link.active[b-ktjobcrsss] {
        color: #ff3e45;
        background: rgba(255,62,69,0.06);
    }

/* Avatar */
.avatar[b-ktjobcrsss] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff3e45, #ff7a7e);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.profile-link[b-ktjobcrsss] {
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* Login/Logout button */
.btn-primary[b-ktjobcrsss] {
    background-color: #ff3e45;
    border-color: #ff3e45;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 18px;
    transition: background .2s ease, transform .2s ease;
}

    .btn-primary:hover[b-ktjobcrsss] {
        background-color: #e0353c;
        border-color: #e0353c;
        transform: translateY(-1px);
    }

/* ---------- Mobile / Tablet (≤ 991px) ---------- */
@media (max-width: 991px) {
    .navbar[b-ktjobcrsss] {
        min-height: 68px;
        padding: 8px 0;
    }

    /* Hamburger left */
    .navbar-toggler[b-ktjobcrsss] {
        order: 0;
        margin-right: auto;
    }

    /* Logo right */
    .navbar-brand[b-ktjobcrsss] {
        order: 1;
        margin-left: auto;
    }

    .logo-img[b-ktjobcrsss] {
        height: 70px;
    }

    /* Collapse */
    .navbar-collapse[b-ktjobcrsss] {
        background: #fff;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 6px 16px rgba(0,0,0,0.06);
        padding: 10px 0;
    }

    .navbar-nav[b-ktjobcrsss] {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

        .navbar-nav .nav-link[b-ktjobcrsss] {
            padding: 12px;
            width: 100%;
        }

    /* Profile + Login/Logout aligned cleanly */
    .d-flex.align-items-center[b-ktjobcrsss] {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        padding: 10px 0;
    }
}
/* /Components/Pages/AboutUs.razor.rz.scp.css */
.about-container[b-jmbw19dahv] {
    background: #f8f8f8; /* Neutral background color */
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Light shadow for a polished look */
    min-height: 80vh;
}

    .about-container h1[b-jmbw19dahv], .about-container h5[b-jmbw19dahv], .about-container h6[b-jmbw19dahv] {
        color: #333; /* Dark neutral for headers */
    }

    .about-container p[b-jmbw19dahv], .about-container ul[b-jmbw19dahv] {
        font-size: 14px; /* Readable font size */
        color: #666; /* Muted text color for readability */
        line-height: 1.8;
    }

    .about-container ul[b-jmbw19dahv] {
        list-style-type: disc; /* Bullet points for lists */
        margin-left: 20px;
        padding-left: 20px;
    }

    .about-container p.fst-italic[b-jmbw19dahv] {
        font-style: italic;
        color: #6c757d; /* Lighter muted text */
    }
/* /Components/Pages/AdminDashboard.razor.rz.scp.css */
/* Global Styles */
body[b-cvwi9u1i91] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f2f4f8;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Dashboard Wrapper */
.dashboard-wrapper[b-cvwi9u1i91] {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Navigation Bar */
.dashboard-nav[b-cvwi9u1i91] {
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    margin: 20px 0;
    z-index: 100;
}

    .dashboard-nav .e-toolbar-items[b-cvwi9u1i91] {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .dashboard-nav .e-toolbar-item[b-cvwi9u1i91] {
        margin: 0 10px;
    }

    .dashboard-nav .e-btn[b-cvwi9u1i91] {
        font-size: 1rem;
        font-weight: 500;
        color: #343a40;
        background: transparent;
        border: none;
        padding: 8px 15px;
        border-radius: 6px;
        transition: all 0.2s;
    }

        .dashboard-nav .e-btn:hover[b-cvwi9u1i91] {
            color: #ff5a5f;
            background: #f8f9fa;
        }

        .dashboard-nav .e-btn.e-active[b-cvwi9u1i91] {
            color: #ffffff;
            background: #ff5a5f;
        }

/* Header */
.dashboard-header[b-cvwi9u1i91] {
    text-align: center;
    margin-bottom: 30px;
}

    .dashboard-header h1[b-cvwi9u1i91] {
        font-size: 2rem;
        margin-bottom: 10px;
    }

.dashboard-message[b-cvwi9u1i91] {
    margin: 0 auto 20px;
    max-width: 600px;
}

/* Tabs Section */
.dashboard-tabs[b-cvwi9u1i91] {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 20px;
    width: 100%;
}

/* Card Container for Each Tab Content */
.card[b-cvwi9u1i91] {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    padding: 20px;
    margin-top: 20px;
}

/* Grid Styles */
.custom-grid[b-cvwi9u1i91] {
    border-radius: 6px;
    box-shadow: none;
}

    .custom-grid .e-gridheader[b-cvwi9u1i91] {
        background: #f8f9fa;
        font-weight: 600;
    }

    .custom-grid .e-row:hover[b-cvwi9u1i91] {
        background: #f1f3f5;
    }

/* Button Group */
.btn-group[b-cvwi9u1i91] {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Base */
.btn[b-cvwi9u1i91] {
    padding: 8px 16px;
    font-size: 0.875rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    min-width: 80px;
    text-align: center;
}

/* Button Variants */
.btn-info[b-cvwi9u1i91] {
    background-color: #17a2b8;
    color: #fff;
}

    .btn-info:hover[b-cvwi9u1i91] {
        background-color: #138496;
    }

.btn-success[b-cvwi9u1i91] {
    background-color: #28a745;
    color: #fff;
}

    .btn-success:hover[b-cvwi9u1i91] {
        background-color: #218838;
    }

.btn-danger[b-cvwi9u1i91] {
    background-color: #dc3545;
    color: #fff;
}

    .btn-danger:hover[b-cvwi9u1i91] {
        background-color: #c82333;
    }

.btn-outline[b-cvwi9u1i91] {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
}

    .btn-outline:hover[b-cvwi9u1i91] {
        background: #007bff;
        color: #fff;
    }

/* No Data Message */
.no-data[b-cvwi9u1i91] {
    text-align: center;
    color: #888;
    font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .dashboard-wrapper[b-cvwi9u1i91] {
        margin: 20px auto;
        padding: 0 10px;
    }

    .dashboard-nav[b-cvwi9u1i91] {
        margin: 10px 15px;
        padding: 10px 15px;
    }

        .dashboard-nav .e-toolbar-items[b-cvwi9u1i91] {
            justify-content: flex-start;
        }

        .dashboard-nav .e-toolbar-item[b-cvwi9u1i91] {
            margin: 5px;
        }

        .dashboard-nav .e-btn[b-cvwi9u1i91] {
            font-size: 0.9rem;
            padding: 6px 10px;
        }

    .btn[b-cvwi9u1i91] {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 70px;
    }
}

@media (max-width: 480px) {
    .btn-group[b-cvwi9u1i91] {
        flex-direction: column;
    }
}
/* /Components/Pages/AdminLogin.razor.rz.scp.css */
.login-container[b-xdhlr193lt] {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8; /* Light background for a clean look */
}

.login-card[b-xdhlr193lt] {
    max-width: 450px;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Softer shadow */
    border-radius: 16px; /* More pronounced rounding */
    overflow: hidden;
}

.card-header[b-xdhlr193lt] {
    border-bottom: none; /* Remove harsh line */
}

.form-input .e-control[b-xdhlr193lt],
.form-dropdown .e-control[b-xdhlr193lt] {
    border-radius: 8px;
    border: 1px solid #dfe1e5;
    padding: 12px 15px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

    .form-input .e-control:focus[b-xdhlr193lt],
    .form-dropdown .e-control:focus[b-xdhlr193lt] {
        border-color: #ff5a5f; /* Airbnb-inspired red */
        box-shadow: 0 0 5px rgba(255, 90, 95, 0.2);
    }

.e-dataform .e-formitem[b-xdhlr193lt] {
    margin-bottom: 20px; /* More spacing between fields */
}

.e-dataform label[b-xdhlr193lt] {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.btn-primary[b-xdhlr193lt] {
    background-color: #ff5a5f;
    border-color: #ff5a5f;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

    .btn-primary:hover[b-xdhlr193lt] {
        background-color: #e04e53;
        border-color: #e04e53;
    }

.error-message[b-xdhlr193lt] {
    border-radius: 6px;
    font-size: 14px;
    padding: 10px;
}

.text-primary[b-xdhlr193lt] {
    color: #ff5a5f !important; /* Match button color */
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .login-card[b-xdhlr193lt] {
        margin: 0 15px;
    }

    .card-body[b-xdhlr193lt] {
        padding: 20px !important;
    }

    .btn-primary[b-xdhlr193lt] {
        width: 100%;
        padding: 12px;
    }
}
/* /Components/Pages/ApartmentPage.razor.rz.scp.css */
.apartment-container[b-dptl9sgk82] {
    background: #f8f8f8;
    min-height: 80vh;
}

.image-gallery .large-img[b-dptl9sgk82] {
    width: 100%;
    height: 400px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

    .image-gallery .large-img:hover[b-dptl9sgk82] {
        opacity: 0.9;
    }

.image-gallery .small-img[b-dptl9sgk82] {
    width: 100%;
    height: 190px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

    .image-gallery .small-img:hover[b-dptl9sgk82] {
        opacity: 0.9;
    }

.fullscreen-img[b-dptl9sgk82] {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.gallery-img[b-dptl9sgk82] {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s ease;
}

    .gallery-img:hover[b-dptl9sgk82] {
        transform: scale(1.03);
    }

.booking-card[b-dptl9sgk82] {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-input[b-dptl9sgk82] {
    border-radius: 8px;
    border: 1px solid #dfe1e5;
    padding: 12px 15px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

    .form-input:focus[b-dptl9sgk82] {
        border-color: #ff5a5f;
        box-shadow: 0 0 5px rgba(255, 90, 95, 0.2);
    }

.form-label[b-dptl9sgk82] {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.btn-primary[b-dptl9sgk82] {
    background-color: #ff5a5f;
    border-color: #ff5a5f;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

    .btn-primary:hover[b-dptl9sgk82] {
        background-color: #e04e53;
        border-color: #e04e53;
    }

.btn-outline-primary[b-dptl9sgk82] {
    color: #ff5a5f;
    border-color: #ff5a5f;
}

    .btn-outline-primary:hover[b-dptl9sgk82] {
        background-color: #ff5a5f;
        color: #fff;
    }

.map-container[b-dptl9sgk82] {
    background: #fff;
}

hr[b-dptl9sgk82] {
    border-color: #dfe1e5;
}
.custom-tooltip .e-tooltip-wrap[b-dptl9sgk82] {
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    padding: 8px;
    font-size: 12px;
    max-width: 300px;
}

.custom-tooltip .e-tip-content[b-dptl9sgk82] {
    white-space: normal;
}

/* Ensure the policy text doesn’t wrap unnecessarily */
.booking-card .d-flex[b-dptl9sgk82] {
    flex-wrap: nowrap; /* Keeps label and policy on the same line */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .image-gallery .large-img[b-dptl9sgk82] {
        height: 300px;
    }

    .image-gallery .small-img[b-dptl9sgk82] {
        height: 140px;
    }

    .gallery-img[b-dptl9sgk82] {
        height: 150px;
    }

    .booking-card[b-dptl9sgk82] {
        margin-top: 20px;
        position: static !important;
    }

    .btn-primary[b-dptl9sgk82], .btn-outline-primary[b-dptl9sgk82] {
        padding: 10px !important;
    }
}

/* /Components/Pages/ChatWindow.razor.rz.scp.css */
.chat-window[b-yolhksk9bz] {
    display: flex;
    flex-direction: column;
    height: 500px;
    padding: 10px;
}

.chat-messages[b-yolhksk9bz] {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 10px;
    position: relative;
    min-height: 0;
}

.message[b-yolhksk9bz] {
    margin: 10px;
    padding: 10px;
    border-radius: 8px;
    max-width: 70%;
}

.current-user[b-yolhksk9bz] {
    background-color: #ebf3fc;
    color: #242424;
    margin-left: auto;
    text-align: right;
}

.other-user[b-yolhksk9bz] {
    background-color: #e9ecef;
    color: black;
    margin-right: auto;
    text-align: left;
}

.chat-input[b-yolhksk9bz] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-top: 1px solid #ddd;
    background-color: #f8f9fa;
}

    .chat-input input[type="text"][b-yolhksk9bz] {
        flex-grow: 1;
        padding: 10px 15px;
        font-size: 14px;
        border: 1px solid #ccc;
        border-radius: 20px;
        outline: none;
        transition: border-color 0.2s;
    }

        .chat-input input[type="text"]:focus[b-yolhksk9bz] {
            border-color: #007bff;
        }

    .chat-input .e-btn[b-yolhksk9bz] {
        border-radius: 20px;
        padding: 8px 20px;
        font-size: 14px;
    }


.error-message[b-yolhksk9bz] {
    color: red;
    margin-bottom: 10px;
}

.jump-to-bottom-btn[b-yolhksk9bz] {
    position: absolute; /* Position relative to .chat-messages */
    bottom: 10px; /* 10px from the bottom */
    right: 10px; /* 10px from the right */
    background-color: #007bff; /* Blue background */
    color: white;
    border-radius: 50%; /* Circular button */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Slight shadow */
    z-index: 10; /* Ensure it’s above messages */
    border: none;
    cursor: pointer;
}

.report-btn[b-yolhksk9bz] {
    margin-top: 5px;
    font-size: 12px;
}
/* /Components/Pages/ContactUs.razor.rz.scp.css */
.contact-us-container[b-8lajpxe2d2] {
    background: #f8f8f8;
    min-height: 80vh;
}

.contact-form[b-8lajpxe2d2], .contact-info[b-8lajpxe2d2] {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .contact-form .form-control[b-8lajpxe2d2] {
        border: 1px solid #ced4da;
        border-radius: 4px;
        padding: 10px;
        font-size: 14px;
        width: 100%; /* Ensure all form controls are full-width */
        box-sizing: border-box; /* Include padding/border in width */
    }

    .contact-form .e-icons[b-8lajpxe2d2] {
        color: #6c757d;
    }

    .contact-form .btn-primary[b-8lajpxe2d2] {
        background-color: #007bff;
        border-color: #007bff;
        font-size: 16px;
        padding: 10px 20px;
        transition: background-color 0.2s ease;
    }

        .contact-form .btn-primary:hover[b-8lajpxe2d2] {
            background-color: #0056b3;
            border-color: #0056b3;
        }

    .contact-info .e-icons[b-8lajpxe2d2] {
        font-size: 18px;
        vertical-align: middle;
    }

    .contact-info a[b-8lajpxe2d2] {
        color: #333;
        text-decoration: none;
    }

        .contact-info a:hover[b-8lajpxe2d2] {
            color: #007bff;
        }

.social-icons a[b-8lajpxe2d2] {
    font-size: 24px;
    color: #333;
    transition: color 0.2s ease;
}

    .social-icons a:hover[b-8lajpxe2d2] {
        color: #007bff;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-form[b-8lajpxe2d2], .contact-info[b-8lajpxe2d2] {
        padding: 15px;
    }

        .contact-form .form-control[b-8lajpxe2d2] {
            font-size: 13px;
        }
}

@media (max-width: 576px) {
    .contact-form[b-8lajpxe2d2], .contact-info[b-8lajpxe2d2] {
        padding: 10px;
    }

    .social-icons a[b-8lajpxe2d2] {
        font-size: 20px;
    }
}
/* /Components/Pages/Forbidden.razor.rz.scp.css */
.forbidden-container[b-tpyv0xh1lp] {
    min-height: 100vh;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content[b-tpyv0xh1lp] {
    max-width: 500px;
    padding: 20px;
}

.lock-icon[b-tpyv0xh1lp] {
    font-size: 80px;
    margin-bottom: 20px;
    color: #ff5a5f;
    animation: pulse 2s infinite;
}

.title[b-tpyv0xh1lp] {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.description[b-tpyv0xh1lp] {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.btn-primary[b-tpyv0xh1lp] {
    background-color: #ff5a5f;
    border-color: #ff5a5f;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

    .btn-primary:hover[b-tpyv0xh1lp] {
        background-color: #e04e53;
        border-color: #e04e53;
    }

/* Pulse animation for the lock icon */
@@keyframes pulse {
    0%[b-tpyv0xh1lp] {
        transform: scale(1);
    }

    50%[b-tpyv0xh1lp] {
        transform: scale(1.1);
    }

    100%[b-tpyv0xh1lp] {
        transform: scale(1);
    }
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .lock-icon[b-tpyv0xh1lp] {
        font-size: 60px;
    }

    .title[b-tpyv0xh1lp] {
        font-size: 2rem;
    }

    .description[b-tpyv0xh1lp] {
        font-size: 1rem;
    }

    .btn-primary[b-tpyv0xh1lp] {
        width: 100%;
        padding: 10px;
    }
}
/* /Components/Pages/GuestDashboard.razor.rz.scp.css */
/* Wrapper to center and constrain content */
.dashboard-wrapper[b-lvvd4eqbmt] {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== Toolbar ===== */
.dashboard-nav[b-lvvd4eqbmt] {
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 15px 20px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    margin: 20px 0;
}

    .dashboard-nav .e-toolbar-items[b-lvvd4eqbmt] {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .dashboard-nav .e-toolbar-item[b-lvvd4eqbmt] {
        margin: 0 10px;
    }

    .dashboard-nav .e-btn[b-lvvd4eqbmt] {
        font-size: 1rem;
        font-weight: 500;
        color: #343a40;
        background: transparent;
        border: none;
        padding: 8px 15px;
        border-radius: 6px;
        transition: all 0.2s;
    }

        .dashboard-nav .e-btn:hover[b-lvvd4eqbmt] {
            color: #ff5a5f;
            background: #f8f9fa;
        }

        .dashboard-nav .e-btn.e-active[b-lvvd4eqbmt] {
            color: #fff;
            background: #ff5a5f;
        }

/* ===== Header ===== */
.dashboard-header[b-lvvd4eqbmt] {
    text-align: center;
    margin-bottom: 30px;
}

    .dashboard-header h1[b-lvvd4eqbmt] {
        font-size: 2rem;
        margin-bottom: 10px;
    }

.dashboard-message[b-lvvd4eqbmt] {
    margin: 0 auto 20px;
    max-width: 600px;
}

/* ===== Bookings Grid ===== */
.dashboard-tabs[b-lvvd4eqbmt] {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 20px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* ===== Booking Card ===== */
.booking-item[b-lvvd4eqbmt] {
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.booking-dates[b-lvvd4eqbmt],
.booking-price[b-lvvd4eqbmt],
.booking-guests[b-lvvd4eqbmt] {
    margin: 8px 0;
    font-size: 14px;
}

.canceled-label[b-lvvd4eqbmt] {
    color: #dc3545;
    font-weight: bold;
    margin: 8px 0;
    font-size: 14px;
}

.booking-policy[b-lvvd4eqbmt] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #555;
}

.info-icon[b-lvvd4eqbmt] {
    cursor: pointer;
    font-size: 14px;
    color: #007bff;
}

.policy-tooltip[b-lvvd4eqbmt] {
    max-width: 300px;
}

/* ===== Actions ===== */
.booking-actions[b-lvvd4eqbmt] {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.action-btn[b-lvvd4eqbmt] {
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.view-btn[b-lvvd4eqbmt] {
    background-color: #007bff;
    color: #fff;
}

.cancel-btn[b-lvvd4eqbmt] {
    background-color: #dc3545;
    color: #fff;
}

.support-btn[b-lvvd4eqbmt] {
    background-color: #28a745;
    color: #fff;
}

/* ===== Empty State ===== */
.no-data[b-lvvd4eqbmt] {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-top: 20px;
}

.online[b-lvvd4eqbmt] {
    color: green;
    font-weight: bold;
}

.offline[b-lvvd4eqbmt] {
    color: gray;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .dashboard-wrapper[b-lvvd4eqbmt] {
        margin: 20px auto;
        padding: 0 10px;
    }

    .dashboard-nav[b-lvvd4eqbmt] {
        margin: 10px 15px;
        padding: 10px 15px;
    }

        .dashboard-nav .e-toolbar-items[b-lvvd4eqbmt] {
            justify-content: flex-start;
        }

        .dashboard-nav .e-btn[b-lvvd4eqbmt] {
            font-size: 0.9rem;
            padding: 6px 10px;
        }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Search Bar Styling */
.search-bar[b-8gn5ivwnl0] {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    position: relative;
}

.search-bar .form-control[b-8gn5ivwnl0] {
border-radius: 0;
    border-right: none;
    border-left: none;
    padding: 10px 15px !important;
    font-size: 14px;
    background: #ffffff !important;
    box-shadow: none !important;
    transition: all 0.2s ease;
    height: 44px;
}

.search-bar .location-input[b-8gn5ivwnl0],
.search-bar .date-input[b-8gn5ivwnl0],
.search-bar .guest-input[b-8gn5ivwnl0] {
    border-right: none !important;
    border-left: none !important;
    border-top: 1px solid #e0e0e0 !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

.guest-input[b-8gn5ivwnl0] {
    cursor: pointer;
}

.search-bar .form-control:focus[b-8gn5ivwnl0] {
    border-color: #ff5a5f !important;
    background: #f9f9f9 !important;
}

.search-bar .e-icons[b-8gn5ivwnl0] {
    color: #6c757d;
    margin-right: 8px;
}

.search-bar .btn-primary[b-8gn5ivwnl0] {
    background-color: #ff5a5f;
    border-color: #ff5a5f;
    font-size: 14px;
    padding: 10px 20px;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
}

.search-bar .btn-primary:hover[b-8gn5ivwnl0] {
    background-color: #e04e53;
    border-color: #e04e53;
}

/* Date Picker Styling */
.e-daterangepicker.e-popup[b-8gn5ivwnl0] {
    border-radius: 0 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    margin-top: 5px;
    z-index: 1001;
}

.e-daterangepicker .e-calendar[b-8gn5ivwnl0] {
    border-radius: 0 !important;
}

.date-picker-input[b-8gn5ivwnl0] {
    border-radius: 4px !important;
    border: 1px solid #e0e0e0 !important;
    padding: 10px 15px !important;
    height: 44px;
}

.e-daterangepicker .e-footer[b-8gn5ivwnl0] {
    border-top: 1px solid #f0f0f0;
    padding: 10px;
}

/* Guest Popover Styling */
.guest-popover[b-8gn5ivwnl0] {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 1000;
    width: 300px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 20px;
}
/* /Components/Pages/HostCalendar.razor.rz.scp.css */
/* --- Host Calendar Container --- */
.hostcalendar-container[b-6izhf2pffo] {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
}

.selection-mode[b-6izhf2pffo] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flatpickr[b-6izhf2pffo] {
    margin: 20px 0;
}

.controls[b-6izhf2pffo] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.availability-list[b-6izhf2pffo] {
    margin-top: 20px;
}

.list-group-item[b-6izhf2pffo] {
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 5px;
    padding: 10px;
}

/* --- Calendar Day Styles --- */

/* Available days (from your logic in JS) */
.flatpickr-day.available[b-6izhf2pffo] {
    background-color: #d4edda !important; /* soft green */
    color: #155724 !important; /* dark green text */
    border-radius: 50%;
}

/* Selected day(s) */
.flatpickr-day.selected[b-6izhf2pffo],
.flatpickr-day.startRange[b-6izhf2pffo],
.flatpickr-day.endRange[b-6izhf2pffo] {
    background-color: #007bff !important; /* blue */
    border-color: #007bff !important;
    color: #fff !important;
}

/* Disabled days (the important fix!) */
.flatpickr-day.flatpickr-disabled[b-6izhf2pffo],
.flatpickr-day.flatpickr-disabled:hover[b-6izhf2pffo] {
    background: #f0f0f0 !important; /* light gray background */
    color: #bbb !important; /* gray text */
    cursor: not-allowed !important; /* no pointer */
    pointer-events: none !important; /* truly unclickable */
    opacity: 1 !important; /* ensure visible but gray */
    border-radius: 50%;
}

/* Hover state for enabled days only */
.flatpickr-day:not(.flatpickr-disabled):hover[b-6izhf2pffo] {
    background-color: #e6f0ff;
    border-radius: 50%;
}
/* /Components/Pages/HostDashboard.razor.rz.scp.css */
/* Wrapper to center and constrain content */
.dashboard-wrapper[b-fck7573ayj] {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== Toolbar ===== */
.dashboard-nav[b-fck7573ayj] {
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 15px 20px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    margin: 20px 0;
}

    .dashboard-nav .e-toolbar-items[b-fck7573ayj] {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .dashboard-nav .e-toolbar-item[b-fck7573ayj] {
        margin: 0 10px;
    }

    .dashboard-nav .e-btn[b-fck7573ayj] {
        font-size: 1rem;
        font-weight: 500;
        color: #343a40;
        background: transparent;
        border: none;
        padding: 8px 15px;
        border-radius: 6px;
        transition: all 0.2s;
    }

        .dashboard-nav .e-btn:hover[b-fck7573ayj] {
            color: #ff5a5f;
            background: #f8f9fa;
        }

        .dashboard-nav .e-btn.e-active[b-fck7573ayj] {
            color: #fff;
            background: #ff5a5f;
        }

/* ===== Header ===== */
.dashboard-header[b-fck7573ayj] {
    text-align: center;
    margin-bottom: 30px;
}

    .dashboard-header h1[b-fck7573ayj] {
        font-size: 2rem;
        margin-bottom: 10px;
    }

.dashboard-message[b-fck7573ayj] {
    margin: 0 auto 20px;
    max-width: 600px;
}

/* ===== Bookings Grid ===== */
.dashboard-tabs[b-fck7573ayj] {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 20px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* ===== Booking Card ===== */
.booking-item[b-fck7573ayj] {
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.booking-dates[b-fck7573ayj],
.booking-price[b-fck7573ayj],
.booking-guests[b-fck7573ayj] {
    margin: 8px 0;
    font-size: 14px;
}

.canceled-label[b-fck7573ayj] {
    color: #dc3545;
    font-weight: bold;
    margin: 8px 0;
    font-size: 14px;
}

.booking-policy[b-fck7573ayj] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #555;
}

.info-icon[b-fck7573ayj] {
    cursor: pointer;
    font-size: 14px;
    color: #007bff;
}

.policy-tooltip[b-fck7573ayj] {
    max-width: 300px;
}

/* ===== Actions ===== */
.booking-actions[b-fck7573ayj] {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.action-btn[b-fck7573ayj] {
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.view-btn[b-fck7573ayj] {
    background-color: #007bff;
    color: #fff;
}

.cancel-btn[b-fck7573ayj] {
    background-color: #dc3545;
    color: #fff;
}

.support-btn[b-fck7573ayj] {
    background-color: #28a745;
    color: #fff;
}

/* ===== Empty State ===== */
.no-data[b-fck7573ayj] {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-top: 20px;
}

.online[b-fck7573ayj] {
    color: green;
    font-weight: bold;
}

.offline[b-fck7573ayj] {
    color: gray;
}

/* Payment status styles */
.payment-status-container[b-fck7573ayj] {
    margin-top: 12px;
    padding: 8px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.payment-status[b-fck7573ayj] {
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
}

.status-authorized[b-fck7573ayj] {
    background-color: #fff3cd;
    color: #856404;
}

.status-captured[b-fck7573ayj] {
    background-color: #d4edda;
    color: #155724;
}

.status-partial[b-fck7573ayj] {
    background-color: #cce5ff;
    color: #004085;
}

.status-cancelled[b-fck7573ayj] {
    background-color: #f8d7da;
    color: #721c24;
}

.capture-schedule[b-fck7573ayj], .captured-amount[b-fck7573ayj], .cancellation-fee[b-fck7573ayj] {
    font-size: 0.9rem;
    margin-top: 5px;
    color: #6c757d;
}

.cancellation-info[b-fck7573ayj] {
    margin-top: 8px;
}

.policy-type[b-fck7573ayj] {
    font-size: 0.9rem;
    color: #495057;
}

.cancellation-details[b-fck7573ayj] {
    margin-top: 10px;
    padding: 8px;
    background-color: #f8d7da;
    border-radius: 5px;
    color: #721c24;
}

.canceled-label[b-fck7573ayj] {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.canceled-date[b-fck7573ayj], .canceled-by[b-fck7573ayj] {
    font-size: 0.85rem;
    margin-top: 3px;
}

.action-btn[b-fck7573ayj] {
    margin-right: 5px;
}

.capture-btn[b-fck7573ayj] {
    background-color: #28a745;
    color: white;
}

.details-btn[b-fck7573ayj] {
    background-color: #17a2b8;
    color: white;
}

.capture-dialog p[b-fck7573ayj] {
    margin-bottom: 10px;
}

.dialog-footer[b-fck7573ayj] {
    display: flex;
    justify-content: flex-end;
}

.dialog-footer button[b-fck7573ayj] {
    margin-left: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .dashboard-wrapper[b-fck7573ayj] {
        margin: 20px auto;
        padding: 0 10px;
    }

    .dashboard-nav[b-fck7573ayj] {
        margin: 10px 15px;
        padding: 10px 15px;
    }

        .dashboard-nav .e-toolbar-items[b-fck7573ayj] {
            justify-content: flex-start;
        }

        .dashboard-nav .e-btn[b-fck7573ayj] {
            font-size: 0.9rem;
            padding: 6px 10px;
        }
}
/* /Components/Pages/Login.razor.rz.scp.css */
.login-container[b-3xdx5mtjby] {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8; /* Light background for a clean look */
}

.login-card[b-3xdx5mtjby] {
    max-width: 450px;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Softer shadow */
    border-radius: 16px; /* More pronounced rounding */
    overflow: hidden;
}

.card-header[b-3xdx5mtjby] {
    border-bottom: none; /* Remove harsh line */
}

.form-input .e-control[b-3xdx5mtjby],
.form-dropdown .e-control[b-3xdx5mtjby] {
    border-radius: 8px;
    border: 1px solid #dfe1e5;
    padding: 12px 15px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

    .form-input .e-control:focus[b-3xdx5mtjby],
    .form-dropdown .e-control:focus[b-3xdx5mtjby] {
        border-color: #ff5a5f; /* Airbnb-inspired red */
        box-shadow: 0 0 5px rgba(255, 90, 95, 0.2);
    }

.e-dataform .e-formitem[b-3xdx5mtjby] {
    margin-bottom: 20px; /* More spacing between fields */
}

.e-dataform label[b-3xdx5mtjby] {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.btn-primary[b-3xdx5mtjby] {
    background-color: #ff5a5f;
    border-color: #ff5a5f;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

    .btn-primary:hover[b-3xdx5mtjby] {
        background-color: #e04e53;
        border-color: #e04e53;
    }

.error-message[b-3xdx5mtjby] {
    border-radius: 6px;
    font-size: 14px;
    padding: 10px;
}

.text-primary[b-3xdx5mtjby] {
    color: #ff5a5f !important; /* Match button color */
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .login-card[b-3xdx5mtjby] {
        margin: 0 15px;
    }

    .card-body[b-3xdx5mtjby] {
        padding: 20px !important;
    }

    .btn-primary[b-3xdx5mtjby] {
        width: 100%;
        padding: 12px;
    }
}

/* /Components/Pages/Manageads.razor.rz.scp.css */
.manageads-container[b-01q8203f3x] {
    background: #f8f8f8;
    min-height: 80vh;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

/* Navigation Bar */
.manageads-nav[b-01q8203f3x] {
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    margin: 20px 0;
    z-index: 100;
}

    .manageads-nav .e-toolbar-items[b-01q8203f3x] {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .manageads-nav .e-toolbar-item[b-01q8203f3x] {
        margin: 0 10px;
    }

    .manageads-nav .e-btn[b-01q8203f3x] {
        font-size: 1rem;
        font-weight: 500;
        color: #343a40;
        background: transparent;
        border: none;
        padding: 8px 15px;
        border-radius: 6px;
        transition: all 0.2s;
    }

        .manageads-nav .e-btn:hover[b-01q8203f3x] {
            color: #ff5a5f;
            background: #f8f9fa;
        }

        .manageads-nav .e-btn.e-active[b-01q8203f3x] {
            color: #ffffff;
            background: #ff5a5f;
        }

.control-panel[b-01q8203f3x], .apartments-preview[b-01q8203f3x], .apartment-form[b-01q8203f3x] {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    max-width: 1000px;
    width: 100%;
    margin: 0 15px 20px;
}

    .control-panel .card-body[b-01q8203f3x] {
        padding: 20px;
    }

.button-group[b-01q8203f3x] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.custom-btn[b-01q8203f3x] {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s, border-color 0.2s;
    text-align: center;
}

.custom-btn-primary[b-01q8203f3x] {
    background-color: #ff5a5f;
    color: #fff;
    border: none;
}

    .custom-btn-primary:hover[b-01q8203f3x] {
        background-color: #e04e53;
    }

.custom-btn-outline-primary[b-01q8203f3x] {
    background: transparent;
    border: 2px solid #ff5a5f;
    color: #ff5a5f;
}

    .custom-btn-outline-primary:hover[b-01q8203f3x] {
        background-color: #ff5a5f;
        color: #fff;
    }

.custom-btn-outline-danger[b-01q8203f3x] {
    background: transparent;
    border: 2px solid #dc3545;
    color: #dc3545;
}

    .custom-btn-outline-danger:hover[b-01q8203f3x] {
        background-color: #dc3545;
        color: #fff;
    }

.custom-btn-outline-secondary[b-01q8203f3x] {
    background: transparent;
    border: 2px solid #6c757d;
    color: #6c757d;
}

    .custom-btn-outline-secondary:hover[b-01q8203f3x] {
        background-color: #6c757d;
        color: #fff;
    }

.custom-btn-danger[b-01q8203f3x] {
    background-color: #dc3545;
    color: #fff;
    border: none;
}

    .custom-btn-danger:hover[b-01q8203f3x] {
        background-color: #c82333;
    }

.btn-sm[b-01q8203f3x] {
    padding: 6px 12px;
    font-size: 0.85rem;
}

.apartments-preview .card-body[b-01q8203f3x] {
    padding: 20px;
}

.apartment-card[b-01q8203f3x] {
    border-radius: 8px;
    transition: transform 0.2s ease;
}

    .apartment-card:hover[b-01q8203f3x] {
        transform: scale(1.05);
    }

.badge[b-01q8203f3x] {
    font-size: 0.85rem;
    padding: 6px 12px;
}

.form-input[b-01q8203f3x] {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 12px 15px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

    .form-input:focus[b-01q8203f3x] {
        border-color: #2a9d8f;
        outline: none;
    }

.form-label[b-01q8203f3x] {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.custom-uploader .e-upload[b-01q8203f3x] {
    border: 1px dashed #ced4da;
    border-radius: 8px;
    padding: 10px;
}

.custom-uploader .e-btn[b-01q8203f3x] {
    background-color: #ff5a5f;
    color: #fff;
    border-radius: 8px;
}

    .custom-uploader .e-btn:hover[b-01q8203f3x] {
        background-color: #e04e53;
    }

.remove-icon[b-01q8203f3x] {
    background: #ff5a5f;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.document-item[b-01q8203f3x] {
    width: 250px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
}

.document-preview embed[b-01q8203f3x] {
    border-radius: 4px;
    max-width: 100%;
}

.document-name[b-01q8203f3x] {
    font-size: 14px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.e-maps[b-01q8203f3x] {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ced4da;
}

    .e-maps .e-toolbar[b-01q8203f3x] {
        background: #fff;
        border-bottom: 1px solid #ced4da;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .manageads-container[b-01q8203f3x] {
        padding: 20px 10px;
    }

    .manageads-nav[b-01q8203f3x] {
        margin: 10px 15px;
        padding: 10px 15px;
    }

        .manageads-nav .e-toolbar-items[b-01q8203f3x] {
            justify-content: flex-start;
        }

        .manageads-nav .e-toolbar-item[b-01q8203f3x] {
            margin: 5px;
        }

        .manageads-nav .e-btn[b-01q8203f3x] {
            font-size: 0.9rem;
            padding: 6px 10px;
        }

    .control-panel .d-flex[b-01q8203f3x] {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .button-group[b-01q8203f3x] {
        flex-direction: column;
        width: 100%;
    }

    .custom-btn[b-01q8203f3x] {
        width: 100%;
    }

    .apartments-preview .d-flex[b-01q8203f3x] {
        gap: 10px;
    }

    .apartment-card[b-01q8203f3x] {
        min-width: 180px;
    }

    .apartment-form .card-body[b-01q8203f3x] {
        padding: 20px;
    }

    .document-item[b-01q8203f3x] {
        flex-direction: row;
        align-items: center;
    }
}

.image-thumb[b-01q8203f3x] {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer; /* shows it's clickable */
    border: 1px solid #e6e6e6; /* subtle default border */
}

    .image-thumb.selected[b-01q8203f3x] {
        border: 2px solid #ff5a5f; /* highlight selected image (your brand color) */
    }


@media (max-width: 480px) {
    .button-group[b-01q8203f3x] {
        gap: 8px;
    }

    .custom-btn[b-01q8203f3x] {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .apartment-card[b-01q8203f3x] {
        min-width: 160px;
    }
}
/* /Components/Pages/PrivacyPolicy.razor.rz.scp.css */
.privacy-container[b-ojoi9ixx0y] {
    background: #f8f8f8;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-height: 80vh;
}

    .privacy-container h1[b-ojoi9ixx0y], .privacy-container h5[b-ojoi9ixx0y], .privacy-container h6[b-ojoi9ixx0y] {
        color: #333;
    }

    .privacy-container p[b-ojoi9ixx0y], .privacy-container ul[b-ojoi9ixx0y] {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
    }

    .privacy-container ul[b-ojoi9ixx0y] {
        list-style-type: disc;
        margin-left: 20px;
    }
/* /Components/Pages/Profile.razor.rz.scp.css */
.profile-wrapper[b-9r5zx5swnc] {
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
}

.profile-nav[b-9r5zx5swnc] {
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    margin: 20px 0;
    z-index: 100;
}

    .profile-nav .e-toolbar-items[b-9r5zx5swnc] {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .profile-nav .e-toolbar-item[b-9r5zx5swnc] {
        margin: 0 10px;
    }

    .profile-nav .e-btn[b-9r5zx5swnc] {
        font-size: 1rem;
        font-weight: 500;
        color: #343a40;
        background: transparent;
        border: none;
        padding: 8px 15px;
        border-radius: 6px;
        transition: all 0.2s;
    }

        .profile-nav .e-btn:hover[b-9r5zx5swnc] {
            color: #ff5a5f;
            background: #f8f9fa;
        }

        .profile-nav .e-btn.e-active[b-9r5zx5swnc] {
            color: #ffffff;
            background: #ff5a5f;
        }

.profile-container[b-9r5zx5swnc] {
    max-width: 1000px;
    width: 100%;
    margin: 20px auto;
    padding: 0 20px;
}

.profile-card[b-9r5zx5swnc] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header[b-9r5zx5swnc] {
    padding: 20px 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

    .card-header h3[b-9r5zx5swnc] {
        font-size: 1.8rem;
        color: #2c3e50;
        margin: 0;
    }

.verification-badge[b-9r5zx5swnc] {
    text-align: center;
    margin-bottom: 20px;
}

    .verification-badge .badge[b-9r5zx5swnc] {
        font-size: 1rem;
        padding: 8px 16px;
        border-radius: 20px;
    }

.profile-section[b-9r5zx5swnc] {
    margin-bottom: 40px;
    padding: 0 30px;
}

    .profile-section h4[b-9r5zx5swnc] {
        font-size: 1.5rem;
        color: #2c3e50;
        margin-bottom: 15px;
    }

.section-message[b-9r5zx5swnc] {
    margin-bottom: 20px;
    border-radius: 6px;
}

.form-grid[b-9r5zx5swnc] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group[b-9r5zx5swnc] {
    margin-bottom: 20px;
}

    .form-group.full-width[b-9r5zx5swnc] {
        grid-column: 1 / -1;
    }

    .form-group label[b-9r5zx5swnc] {
        font-size: 0.95rem;
        font-weight: 500;
        color: #343a40;
        margin-bottom: 6px;
        display: block;
    }

.form-input[b-9r5zx5swnc] {
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 10px;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.2s;
}

    .form-input:focus[b-9r5zx5swnc] {
        border-color: #ff5a5f;
        outline: none;
    }

    .form-input.e-multiline[b-9r5zx5swnc] {
        min-height: 100px;
        resize: vertical;
    }

.validation-message[b-9r5zx5swnc] {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
}

.form-actions[b-9r5zx5swnc] {
    text-align: center;
    margin-top: 20px;
}

.btn-primary[b-9r5zx5swnc] {
    background: #ff5a5f;
    color: #fff;
    border-radius: 20px;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s;
}

    .btn-primary:hover[b-9r5zx5swnc] {
        background: #e04e53;
    }

.btn-danger[b-9r5zx5swnc] {
    background: #dc3545;
    color: #fff;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.9rem;
}

.upload-container[b-9r5zx5swnc] {
    text-align: center;
}

.image-preview-container[b-9r5zx5swnc] {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.upload-image[b-9r5zx5swnc] {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #e9ecef;
}

.remove-icon[b-9r5zx5swnc] {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff5a5f;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
}

.custom-uploader .e-upload[b-9r5zx5swnc] {
    border: 1px dashed #ced4da;
    border-radius: 6px;
    padding: 10px;
}

.custom-uploader .e-btn[b-9r5zx5swnc] {
    background: #ff5a5f;
    color: #fff;
    border-radius: 6px;
}

    .custom-uploader .e-btn:hover[b-9r5zx5swnc] {
        background: #e04e53;
    }

.documents-section[b-9r5zx5swnc] {
    margin-top: 20px;
}

.document-item[b-9r5zx5swnc] {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.document-info[b-9r5zx5swnc] {
    margin-top: 10px;
}

    .document-info p[b-9r5zx5swnc] {
        margin: 5px 0;
        font-size: 0.9rem;
    }

.document-preview[b-9r5zx5swnc] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

    .document-preview img[b-9r5zx5swnc] {
        max-width: 80px;
        border-radius: 4px;
    }

    .document-preview span[b-9r5zx5swnc] {
        font-size: 0.9rem;
    }

.loading[b-9r5zx5swnc] {
    text-align: center;
    padding: 50px;
}

.message[b-9r5zx5swnc] {
    margin: 20px 0;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .profile-wrapper[b-9r5zx5swnc] {
        padding-top: 20px;
    }

    .profile-nav[b-9r5zx5swnc] {
        margin: 10px 15px;
        padding: 10px 15px;
    }

        .profile-nav .e-toolbar-items[b-9r5zx5swnc] {
            justify-content: flex-start;
        }

        .profile-nav .e-toolbar-item[b-9r5zx5swnc] {
            margin: 5px;
        }

        .profile-nav .e-btn[b-9r5zx5swnc] {
            font-size: 0.9rem;
            padding: 6px 10px;
        }

    .profile-container[b-9r5zx5swnc] {
        margin: 10px;
        padding: 0 10px;
    }

    .profile-section[b-9r5zx5swnc] {
        padding: 0 15px;
    }

    .form-grid[b-9r5zx5swnc] {
        grid-template-columns: 1fr;
    }

    .btn-primary[b-9r5zx5swnc] {
        width: 100%;
        padding: 12px;
    }

    .upload-image[b-9r5zx5swnc] {
        width: 100px;
        height: 100px;
    }

    .document-item[b-9r5zx5swnc] {
        min-height: 350px;
    }
}
/* /Components/Pages/RegistrationGuideForGuests.razor.rz.scp.css */
.registration-guide-container[b-l85b5hr5kx] {
    background: #f8f8f8; /* Neutral background */
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    min-height: 80vh;
}

    .registration-guide-container h1[b-l85b5hr5kx], .registration-guide-container h5[b-l85b5hr5kx], .registration-guide-container h6[b-l85b5hr5kx] {
        color: #333; /* Dark neutral for headers */
    }

    .registration-guide-container p[b-l85b5hr5kx], .registration-guide-container ul[b-l85b5hr5kx] {
        font-size: 14px; /* Readable font size */
        color: #666; /* Muted color for readability */
        line-height: 1.8;
    }

    .registration-guide-container ul[b-l85b5hr5kx] {
        list-style-type: disc; /* Use bullet points */
        margin-left: 20px;
        padding-left: 20px;
    }

    .registration-guide-container p.fst-italic[b-l85b5hr5kx] {
        font-style: italic;
        color: #6c757d; /* Lighter muted text */
    }
/* /Components/Pages/RegistrationGuideForHosts.razor.rz.scp.css */
.registration-guide-container[b-rpmfmjqhg3] {
    background: #f8f8f8; /* Neutral background */
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    min-height: 80vh;
}

    .registration-guide-container h1[b-rpmfmjqhg3], .registration-guide-container h5[b-rpmfmjqhg3], .registration-guide-container h6[b-rpmfmjqhg3] {
        color: #333; /* Dark neutral for headers */
    }

    .registration-guide-container p[b-rpmfmjqhg3], .registration-guide-container ul[b-rpmfmjqhg3] {
        font-size: 14px; /* Readable font size */
        color: #666; /* Muted color for readability */
        line-height: 1.8;
    }

    .registration-guide-container ul[b-rpmfmjqhg3] {
        list-style-type: disc; /* Use bullet points */
        margin-left: 20px;
        padding-left: 20px;
    }

    .registration-guide-container p.fst-italic[b-rpmfmjqhg3] {
        font-style: italic;
        color: #6c757d; /* Lighter muted text */
    }
/* /Components/Pages/SignUp.razor.rz.scp.css */
.signup-container[b-5drxek5elr] {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8; /* Light background */
}

.signup-card[b-5drxek5elr] {
    max-width: 450px;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
}

.card-header[b-5drxek5elr] {
    border-bottom: none;
}

.form-input .e-control[b-5drxek5elr],
.form-dropdown .e-control[b-5drxek5elr],
.form-control[b-5drxek5elr] {
    border-radius: 8px;
    border: 1px solid #dfe1e5;
    padding: 12px 15px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-input .e-control:focus[b-5drxek5elr],
.form-dropdown .e-control:focus[b-5drxek5elr],
.form-control:focus[b-5drxek5elr] {
    border-color: #ff5a5f;
    box-shadow: 0 0 5px rgba(255, 90, 95, 0.2);
    outline: none;
}

.e-dataform .e-formitem[b-5drxek5elr] {
    margin-bottom: 20px;
}

.e-dataform label[b-5drxek5elr],
.form-label[b-5drxek5elr] {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.btn-primary[b-5drxek5elr] {
    background-color: #ff5a5f;
    border-color: #ff5a5f;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.btn-primary:hover[b-5drxek5elr] {
    background-color: #e04e53;
    border-color: #e04e53;
}

.btn-primary:disabled[b-5drxek5elr] {
    background-color: #ff8c8f;
    border-color: #ff8c8f;
    opacity: 0.8;
}

.error-message[b-5drxek5elr] {
    border-radius: 6px;
    font-size: 14px;
    padding: 10px;
}

.text-primary[b-5drxek5elr] {
    color: #ff5a5f !important;
}


/* Responsive Adjustments */
@media (max-width: 576px) {
    .signup-card[b-5drxek5elr] {
        margin: 0 15px;
    }

    .card-body[b-5drxek5elr] {
        padding: 20px !important;
    }

    .btn-primary[b-5drxek5elr] {
        width: 100%;
        padding: 12px;
    }
}

/* /Components/Pages/StripeCheckoutSuccess.razor.rz.scp.css */
.success-container[b-0troscnval] {
    max-width: 600px;
    margin: 3rem auto;
    padding: 1.5rem;
}

.loading-spinner[b-0troscnval] {
    text-align: center;
    padding: 2rem;
}

.success-card[b-0troscnval], .error-card[b-0troscnval] {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.success-icon[b-0troscnval], .error-icon[b-0troscnval] {
    font-size: 4rem;
    margin-bottom: 1rem;
}

    .success-icon i[b-0troscnval] {
        color: #28a745;
    }

    .error-icon i[b-0troscnval] {
        color: #ffc107;
    }

.booking-details[b-0troscnval] {
    margin: 2rem 0;
    text-align: left;
}

.detail-row[b-0troscnval] {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.cancellation-policy[b-0troscnval] {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 1rem;
    text-align: left;
}

.action-buttons[b-0troscnval] {
    margin-top: 2rem;
}
/* /Components/Pages/StripeHostVerificationReturn.razor.rz.scp.css */
:root[b-qtbpkw3qqa] {
    --white: #FCFCFC;
    --gray: #CBCDD3;
    --dark: #777777;
    --error: #EF8D9C;
    --success: #B0DB7D;
    --shadow: rgba(119, 119, 119, 0.3);
}

html[b-qtbpkw3qqa] {
    min-height: 100vh;
    display: flex;
}

body[b-qtbpkw3qqa] {
    display: flex;
    flex: 1;
    font-family: 'Segoe UI', 'Helvetica', 'Arial', sans-serif;
    text-align: center;
    margin: 0;
    background: #F5F6F5;
}

.container[b-qtbpkw3qqa] {
    margin: auto;
    width: 100%;
    max-width: 500px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.e-card[b-qtbpkw3qqa] {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
    border-radius: 16px;
    box-shadow: 0 4px 12px var(--shadow);
    width: 100%;
    height: 100%;
}

.e-card-header-title[b-qtbpkw3qqa] {
    font-size: 1.4em;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 20px;
}

.status-content[b-qtbpkw3qqa] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.icon[b-qtbpkw3qqa] {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.checkmark[b-qtbpkw3qqa]::before, .checkmark[b-qtbpkw3qqa]::after {
    content: "";
    position: absolute;
    background: var(--success);
}

.checkmark[b-qtbpkw3qqa]::before {
    width: 0;
    height: 6px;
    transform: rotate(45deg);
    top: 30px;
    left: 10px;
    animation: checkmark-line1-b-qtbpkw3qqa 0.6s ease forwards;
}

.checkmark[b-qtbpkw3qqa]::after {
    width: 0;
    height: 6px;
    transform: rotate(-45deg);
    top: 25px;
    left: 20px;
    animation: checkmark-line2-b-qtbpkw3qqa 0.6s ease forwards 0.3s;
}

@keyframes checkmark-line1-b-qtbpkw3qqa {
    to {
        width: 30px;
    }
}

@keyframes checkmark-line2-b-qtbpkw3qqa {
    to {
        width: 50px;
    }
}

.cross[b-qtbpkw3qqa]::before, .cross[b-qtbpkw3qqa]::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 6px;
    background: var(--error);
    top: 27px;
    left: -5px;
    opacity: 0;
    animation: cross-fade-b-qtbpkw3qqa 0.5s ease forwards;
}

.cross[b-qtbpkw3qqa]::before {
    transform: rotate(45deg);
}

.cross[b-qtbpkw3qqa]::after {
    transform: rotate(-45deg);
}

@keyframes cross-fade-b-qtbpkw3qqa {
    to {
        opacity: 1;
    }
}

.spinner-container[b-qtbpkw3qqa] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

    .spinner-container p[b-qtbpkw3qqa] {
        font-size: 1em;
        color: var(--dark);
        margin-top: 10px;
    }

.e-message[b-qtbpkw3qqa] {
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 20px;
}

.e-btn[b-qtbpkw3qqa] {
    border-radius: 20px;
    box-shadow: 0 2px 5px var(--shadow);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .e-btn:hover[b-qtbpkw3qqa] {
        transform: scale(1.05);
    }

.success-button[b-qtbpkw3qqa] {
    background-color: var(--success);
    color: var(--white);
}

.error-button[b-qtbpkw3qqa] {
    background-color: var(--error);
    color: var(--white);
}
/* /Components/Pages/Terms.razor.rz.scp.css */
.terms-container[b-6fwe0x3iga] {
    max-width: 800px;
    margin: 0 auto;
}

.terms-card[b-6fwe0x3iga] {
    background: #fff;
}

h1[b-6fwe0x3iga] {
    font-size: 2rem;
    color: #333;
}

h2[b-6fwe0x3iga] {
    font-size: 1.5rem;
    color: #444;
    margin-top: 2rem;
}

h3[b-6fwe0x3iga] {
    font-size: 1.2rem;
    color: #555;
    margin-top: 1.5rem;
}

p[b-6fwe0x3iga] {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

ul[b-6fwe0x3iga] {
    padding-left: 20px;
}

li[b-6fwe0x3iga] {
    margin-bottom: 0.5rem;
}
/* /Components/Pages/TermsAndConditions.razor.rz.scp.css */
.terms-container[b-7g0pafz87e] {
    background: #f8f8f8; /* Neutral background */
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for a polished look */
    min-height: 80vh;
}

    .terms-container h1[b-7g0pafz87e], .terms-container h6[b-7g0pafz87e] {
        color: #333; /* Dark neutral for headers */
    }

    .terms-container p[b-7g0pafz87e], .terms-container ul[b-7g0pafz87e] {
        font-size: 14px; /* Readable font size */
        color: #666; /* Muted color for readability */
        line-height: 1.8;
    }

    .terms-container ul[b-7g0pafz87e] {
        list-style-type: disc; /* Bullet points for lists */
        margin-left: 20px;
        padding-left: 20px;
    }
