/* /Components/ApartmentPageComponent/ApartmentGallery.razor.rz.scp.css */
.gallery-grid[b-1t23btaf9p] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 200px);
    gap: 10px;
    width: 100%;
}

.main-image[b-1t23btaf9p] {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.gallery-img-wrapper[b-1t23btaf9p] {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    background-color: #f0f0f0;
}

    .gallery-img-wrapper img[b-1t23btaf9p] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .gallery-img-wrapper:hover img[b-1t23btaf9p] {
        transform: scale(1.03);
    }

/* --- 2. SHOW ALL BUTTON TRIGGER --- */
.show-all-btn-trigger[b-1t23btaf9p] {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
}

    .show-all-btn-trigger .e-btn[b-1t23btaf9p] {
        background-color: white !important;
        color: #222 !important;
        font-weight: 600 !important;
        border: 1px solid #222 !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
    }

/* --- 3. MODAL CONTAINERS (The Fix) --- */
.custom-modal-overlay[b-1t23btaf9p] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 3000;
    background-color: black;
    display: flex;
    flex-direction: column;
    overscroll-behavior: contain;
}

.white-bg[b-1t23btaf9p] {
    background-color: white !important;
}

/* Close Button - Universal Style */
.close-btn-fixed[b-1t23btaf9p] {
    position: fixed;
    /* env(...) handles the notch and status bar on Android/iOS */
    top: calc(15px + env(safe-area-inset-top));
    right: 15px;
    z-index: 9999; /* Overwhelmingly high z-index */
    background: #222;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    width: 44px; /* Slightly larger for easier tapping on Android */
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* --- 4. FULLSCREEN IMAGE VIEW --- */
.fullscreen-body[b-1t23btaf9p] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.img-contain[b-1t23btaf9p] {
    max-width: 95vw;
    max-height: 85vh;
    object-fit: contain;
}

.nav-arrow[b-1t23btaf9p] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4500;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.nav-left[b-1t23btaf9p] {
    left: 15px;
}

.nav-right[b-1t23btaf9p] {
    right: 15px;
}

/* --- 5. "SHOW ALL" GRID VIEW --- */
.scroll-grid-body[b-1t23btaf9p] {
    flex: 1;
    overflow-y: auto;
    padding: calc(70px + env(safe-area-inset-top)) 20px 40px 20px;
    -webkit-overflow-scrolling: touch;
}

/* --- 6. MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .gallery-grid[b-1t23btaf9p] {
        display: block;
    }

    .main-image[b-1t23btaf9p] {
        height: 280px;
        margin-bottom: 8px;
    }

    .secondary-image[b-1t23btaf9p] {
        display: none;
    }

    .nav-arrow[b-1t23btaf9p] {
        width: 40px;
        height: 40px;
    }
}
/* /Components/ApartmentPageComponent/ApartmentReviews.razor.rz.scp.css */
.reviews-section[b-7k53kuczmz] {
    max-width: 1000px;
}

.review-card[b-7k53kuczmz] {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

    .review-card:nth-last-child(-n+2)[b-7k53kuczmz] {
        border-bottom: none;
    }

.review-text[b-7k53kuczmz] {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

.btn-link[b-7k53kuczmz] {
    color: #000; /* Use black for better contrast */
    padding-left: 0 !important;
    text-decoration: underline;
    font-size: 0.95rem;
}
/* /Components/ChatComponent/ChatWindow.razor.rz.scp.css */
.booking-chatui[b-y3bdds753l] {
    height: 65vh;
    max-height: 600px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

    .booking-chatui .e-chat[b-y3bdds753l] {
        height: 100%;
    }

.message-user[b-y3bdds753l] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .booking-chatui[b-y3bdds753l] {
        height: 75vh;
    }
}
/* /Components/ChatComponent/GlobalChatWidget.razor.rz.scp.css */
/* --- Global Floating Chat Widget Styles --- */
.global-chat-container[b-861dmxrndc] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2000;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.chat-widget-window[b-861dmxrndc] {
    width: 360px;
    height: 420px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column; /* Added: ensures children stack vertically */
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.chat-header[b-861dmxrndc] {
    background-color: #007bff;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}

    .chat-header .back-btn[b-861dmxrndc] {
        cursor: pointer;
        margin-right: 10px;
        font-size: 1.2rem;
    }

/* New: container for dynamic content (inbox or chat) */
.chat-body-content[b-861dmxrndc] {
    flex: 1; /* New: takes up all remaining space */
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Inbox List Styles */
.inbox-list[b-861dmxrndc] {
    flex: 1;
    overflow-y: auto;
}

/* ... (Rest of the previous conversation-item styles remain the same) ... */

.conversation-item[b-861dmxrndc] {
    display: flex;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
}

    .conversation-item:hover[b-861dmxrndc] {
        background-color: #f9f9f9;
    }

    .conversation-item.unread[b-861dmxrndc] {
        background-color: #e3f2fd; /* Light blue for unread */
    }

.conv-avatar[b-861dmxrndc] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}

.conv-details[b-861dmxrndc] {
    flex: 1;
    overflow: hidden;
}

.conv-name[b-861dmxrndc] {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.conv-last-msg[b-861dmxrndc] {
    font-size: 0.8rem;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conv-time[b-861dmxrndc] {
    font-size: 0.7rem;
    color: #999;
    margin-left: 5px;
}

/* Toggle Button */
.chat-toggle-btn[b-861dmxrndc] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
}
.chat-toggle-btn i[b-861dmxrndc] {
    font-size: 1.4rem; 
    line-height: 1;
}


.badge-counter[b-861dmxrndc] {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #dc3545;
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 10px;
    font-weight: bold;
}
/* /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: 10px 0; 
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); 
    transition: all .3s ease;
    font-family: 'Inter', system-ui, sans-serif;
    min-height: 80px;
}

.logo-img[b-ktjobcrsss] {
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform .3s ease;
    clip-path: inset(1px round 0);
}


    .logo-img:hover[b-ktjobcrsss] {
        transform: scale(1.03); 
    }

.navbar-toggler[b-ktjobcrsss] {
    border: none !important; 
    padding: 0;
    outline: none !important;
    box-shadow: none !important; 
}

    .navbar-toggler:focus[b-ktjobcrsss],
    .navbar-toggler:active[b-ktjobcrsss],
    .navbar-toggler-icon:focus[b-ktjobcrsss] {
        outline: none !important;
        box-shadow: none !important;
        border: none !important;
    }

/* ---------- Nav Links ---------- */
.navbar-nav .nav-link[b-ktjobcrsss] {
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px !important;
    margin: 0 2px;
    color: #333;
    border-radius: 50px;
    transition: all .2s ease;
}

    .navbar-nav .nav-link:hover[b-ktjobcrsss],
    .navbar-nav .nav-link.active[b-ktjobcrsss] {
        color: #ff3e45; 
        background: rgba(255, 62, 69, 0.05);
    }

/* ---------- Avatar & Profile ---------- */
.avatar[b-ktjobcrsss] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #007bff;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f8f9fa;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all .3s ease;
}

    .avatar:hover[b-ktjobcrsss] {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

/* ---------- Login/Logout Button ---------- */
.btn-primary[b-ktjobcrsss] {
    background-color: #007bff;
    border: none;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all .3s ease;
}

    .btn-primary:hover[b-ktjobcrsss] {
        background-color: #0056b3;
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(0,123,255,0.25);
    }

/* ---------- Responsive (≤ 991px) ---------- */
@media (max-width: 991px) {
    .navbar[b-ktjobcrsss] {
        min-height: 70px;
    }

    .navbar-toggler[b-ktjobcrsss] {
        order: 0;
    }

    .navbar-brand[b-ktjobcrsss] {
        order: 1;
        margin-left: auto;
        margin-right: 0;
    }

    .logo-img[b-ktjobcrsss] {
        height: 75px; /* حجم الشعار في الجوال */
    }

    .navbar-collapse[b-ktjobcrsss] {
        background: #fff;
        border-top: 1px solid #eee;
        margin-top: 10px;
        padding: 20px 0;
        border-radius: 0 0 20px 20px;
    }

    .navbar-nav[b-ktjobcrsss] {
        gap: 10px;
    }

        .navbar-nav .nav-link[b-ktjobcrsss] {
            border-radius: 0;
            padding: 15px !important;
        }
}
/* /Components/ManageadsComponent/ApartmentCardList.razor.rz.scp.css */
.apartments-preview .card-body[b-nig64woll0] {
    padding: 20px;
}

.card.apartment-card[b-nig64woll0] {
    position: relative;
    border: none !important;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease;
    cursor: pointer;
}

    .card.apartment-card.apartment-card-selected[b-nig64woll0]::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 2px solid #ff5a5f !important;
        border-radius: inherit;
        pointer-events: none;
        box-sizing: border-box;
    }


.badge[b-nig64woll0] {
    font-size: 0.85rem;
    padding: 6px 12px;
}

@media (max-width: 768px) {
    .apartments-preview .d-flex[b-nig64woll0] {
        gap: 10px;
    }

    .apartment-card[b-nig64woll0] {
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .apartment-card[b-nig64woll0] {
        min-width: 160px;
    }
}
/* /Components/ManageadsComponent/ApartmentLocationEditor.razor.rz.scp.css */
/* Map Styles */
.e-maps[b-3t8ylfkboh] {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ced4da;
}

    .e-maps .e-toolbar[b-3t8ylfkboh] {
        background: #fff;
        border-bottom: 1px solid #ced4da;
    }
/* /Components/ManageadsComponent/ApartmentRoomsEditor.razor.rz.scp.css */
body[b-shph2hwusu] {
}
/* /Components/ManageadsComponent/AvailabilityEditor.razor.rz.scp.css */
body[b-kkrtlrkrkx] {
}
/* /Components/ManageadsComponent/FacilitiesEditor.razor.rz.scp.css */
.facility-chip[b-5d12mbopfh] {
    background: #f1f3f5;
    color: #111;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-right: 6px;
    margin-bottom: 4px;
}
/* /Components/ManageadsComponent/GuestPreferencesEditor.razor.rz.scp.css */
body[b-f53zbjppgs] {
}
/* /Components/ManageadsComponent/HostCalendar.razor.rz.scp.css */
/* --- Host Calendar Container --- */
.hostcalendar-container[b-ikprmhp9mp] {
    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-ikprmhp9mp] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flatpickr[b-ikprmhp9mp] {
    margin: 20px 0;
}

/* Ensure the day cell can position the badge absolutely at the bottom */
.flatpickr-day[b-ikprmhp9mp] {
    position: relative;
    height: 60px; /* Make cells slightly taller to fit price */
    line-height: 40px; /* Push date number up slightly */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

    /* --- Status Colors --- */

    /* Available: Light Green */
    .flatpickr-day.day-available[b-ikprmhp9mp] {
        background-color: #d1e7dd !important;
        border-color: #badbcc !important;
        color: #0f5132 !important;
    }

    /* Unavailable: Light Red */
    .flatpickr-day.day-unavailable[b-ikprmhp9mp] {
        background-color: #f8d7da !important;
        border-color: #f5c6cb !important;
        color: #842029 !important;
    }

    /* Selected State (Overrides others when clicking) */
    .flatpickr-day.selected[b-ikprmhp9mp], .flatpickr-day.startRange[b-ikprmhp9mp], .flatpickr-day.endRange[b-ikprmhp9mp] {
        background-color: #0d6efd !important;
        color: #fff !important;
        border-color: #0d6efd !important;
    }

/* --- Price Badge --- */
.price-badge[b-ikprmhp9mp] {
    font-size: 0.7em;
    line-height: 1;
    margin-top: -5px; /* Adjust based on cell height */
    font-weight: bold;
    color: inherit;
}
/* /Components/ManageadsComponent/HouseRulesEditor.razor.rz.scp.css */
.rule-chip[b-oi3uuukeqp] {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #495057;
    border: 1px solid #dee2e6;
}
/* /Components/ManageadsComponent/ManageAdsNav.razor.rz.scp.css */
/* Navigation Bar */
.manageads-nav[b-3p7fblp4j3] {
    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-3p7fblp4j3] {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .manageads-nav .e-toolbar-item[b-3p7fblp4j3] {
        margin: 0 10px;
    }

    .manageads-nav .e-btn[b-3p7fblp4j3] {
        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-3p7fblp4j3] {
            color: #ff5a5f;
            background: #f8f9fa;
        }

        .manageads-nav .e-btn.e-active[b-3p7fblp4j3] {
            color: #ffffff;
            background: #ff5a5f;
        }

@media (max-width: 768px) {
    .manageads-nav[b-3p7fblp4j3] {
        margin: 10px 15px;
        padding: 10px 15px;
    }

        .manageads-nav .e-toolbar-items[b-3p7fblp4j3] {
            justify-content: flex-start;
        }

        .manageads-nav .e-toolbar-item[b-3p7fblp4j3] {
            margin: 5px;
        }

        .manageads-nav .e-btn[b-3p7fblp4j3] {
            font-size: 0.9rem;
            padding: 6px 10px;
        }
}
/* /Components/ManageadsComponent/PolicyEditor.razor.rz.scp.css */
body[b-a5gaa1gddg] {
}
/* /Components/ManageadsComponent/PropertyDocumentUploader.razor.rz.scp.css */
.custom-btn-danger[b-829i9oxl06] {
    background-color: #dc3545;
    color: #fff;
    border: none;
}

    .custom-btn-danger:hover[b-829i9oxl06] {
        background-color: #c82333;
    }

.document-item[b-829i9oxl06] {
    width: 250px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
}

.document-preview embed[b-829i9oxl06] {
    border-radius: 4px;
    max-width: 100%;
}

.document-name[b-829i9oxl06] {
    font-size: 14px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* /Components/ManageadsComponent/PropertyImageUploader.razor.rz.scp.css */
.custom-uploader .e-upload[b-8rxwp2o87j] {
    border: 1px dashed #ced4da;
    border-radius: 8px;
    padding: 10px;
}

.custom-uploader .e-btn[b-8rxwp2o87j] {
    background-color: #ff5a5f;
    color: #fff;
    border-radius: 8px;
}

    .custom-uploader .e-btn:hover[b-8rxwp2o87j] {
        background-color: #e04e53;
    }

.image-thumb[b-8rxwp2o87j] {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #e6e6e6;
}

    .image-thumb.selected[b-8rxwp2o87j] {
        border: 2px solid #ff5a5f;
    }

.remove-icon[b-8rxwp2o87j] {
    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%);
}
/* /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/AddReviewPage.razor.rz.scp.css */
/* /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;
}

/* Layout Sections */
.image-gallery-section[b-dptl9sgk82] {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 15px;
}

.content-section[b-dptl9sgk82] {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    padding: 0 15px;
}

.loading-wrapper[b-dptl9sgk82] {
    margin-top: 5rem;
}

/* --- Gallery Styles --- */

/* Main Wrapper: Ensures the gallery has a fixed block height so columns align */
.apartment-gallery-wrapper[b-dptl9sgk82] {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 15px;
}

/* The container for each image - handles the rounded corners and overflow */
.gallery-item[b-dptl9sgk82] {
    display: block;
    transition: transform 0.2s ease;
}

    .gallery-item:hover[b-dptl9sgk82] {
        /* Subtle zoom effect */
        transform: scale(1.01);
        z-index: 1; /* Brings image slightly above borders */
    }

/* This forces images to stretch to fill the 100% height of their parent div */
.gallery-img-fluid[b-dptl9sgk82] {
    object-fit: cover;
    display: block;
}

/* Overlay for the "Show All" button on the bottom right image */
.gallery-overlay[b-dptl9sgk82] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); /* Slight dim */
    transition: background 0.2s ease;
    z-index: 2;
}

    .gallery-overlay:hover[b-dptl9sgk82] {
        background: rgba(0, 0, 0, 0.3); /* Darker on hover */
    }

/* Modal & Fullscreen */
.fullscreen-img[b-dptl9sgk82] {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* All Photos Grid */
.gallery-img[b-dptl9sgk82] {
    height: 200px; /* Fixed height for grid items in modal */
    width: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

    .gallery-img:hover[b-dptl9sgk82] {
        transform: scale(1.03);
    }

/* Booking Card Styles */
.booking-card[b-dptl9sgk82] {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    top: 20px; /* Replaces inline style="top: 20px;" */
}

.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);
    }

/* Buttons & Links */
.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;
    }

.underline-text[b-dptl9sgk82] {
    text-decoration: underline;
    cursor: pointer;
}

/* Map Styles */
.map-container[b-dptl9sgk82] {
    background: #fff;
    border-color: #dfe1e5; /* Replaces inline style="border-color: #dfe1e5;" */
    overflow: hidden;
}

/* Host Styles */
.host-profile-img[b-dptl9sgk82] {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #dfe1e5; /* Replaces inline style */
}

/* Tooltip */
.custom-tooltip .e-tooltip-wrap[b-dptl9sgk82] {
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    padding: 8px;
    font-size: 12px;
    max-width: 300px;
}
/* /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 */
/* ============================
   MAIN WRAPPER
============================ */
.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;
        }

/* ============================
   PAGE 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;
}

/* ============================
   BOOKING CARD
============================ */
.booking-card[b-lvvd4eqbmt] {
    border-radius: 12px;
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

    .booking-card:hover[b-lvvd4eqbmt] {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

/* Image wrapper ensures proper clipping and consistent heights */
.img-wrapper[b-lvvd4eqbmt] {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    background-color: #f6f6f6; /* fallback while image loads */
}

    .img-wrapper .e-card-image[b-lvvd4eqbmt] {
        width: 100%;
        height: 200px;
        display: block;
        object-fit: cover;
        object-position: center;
        border-radius: 0; /* radius handled by wrapper */
        vertical-align: middle;
    }

    /* Optional subtle overlay for readability when text overlays images */
    /* .img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.04), rgba(0,0,0,0.12));
    pointer-events: none;
    z-index: 1;
} */

    /* Ensure content sits above overlay if used */
    .img-wrapper > *[b-lvvd4eqbmt] {
        position: relative;
        z-index: 2;
    }

.booking-header h5[b-lvvd4eqbmt] {
    font-size: 1.1rem;
    font-weight: 600;
}

.booking-status[b-lvvd4eqbmt] {
    font-size: 0.85rem;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
}

.card-content[b-lvvd4eqbmt] {
    min-height: 180px;
}

.canceled-label[b-lvvd4eqbmt] {
    color: #dc3545;
    font-weight: 700;
    font-size: 14px;
    margin: 8px 0;
}

.online[b-lvvd4eqbmt] {
    color: #28a745;
    font-weight: bold;
}

.offline[b-lvvd4eqbmt] {
    color: gray;
}

.booking-policy[b-lvvd4eqbmt] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #555;
}

.info-icon[b-lvvd4eqbmt] {
    cursor: pointer;
    font-size: 1rem;
    color: #007bff;
}

.policy-tooltip[b-lvvd4eqbmt] {
    max-width: 300px;
}

/* ============================
   FOOTER ACTIONS
============================ */
.booking-actions[b-lvvd4eqbmt] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

    .booking-actions .btn[b-lvvd4eqbmt] {
        font-size: 0.85rem;
        border-radius: 6px;
    }

/* ============================
   EMPTY STATE
============================ */
.no-data[b-lvvd4eqbmt] {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-top: 20px;
}

/* ============================
   RESPONSIVE
============================ */
/* Mobile and small devices */
@media (max-width: 480px) {
    .dashboard-wrapper[b-lvvd4eqbmt] {
        margin: 16px auto;
        padding: 0 12px;
    }

    .dashboard-header h1[b-lvvd4eqbmt] {
        font-size: 1.6rem;
    }

    .dashboard-nav[b-lvvd4eqbmt] {
        margin: 8px 12px;
        padding: 10px 12px;
    }

        .dashboard-nav .e-toolbar-items[b-lvvd4eqbmt] {
            justify-content: flex-start;
        }

        .dashboard-nav .e-btn[b-lvvd4eqbmt] {
            font-size: 0.9rem;
            padding: 6px 10px;
        }

    .img-wrapper .e-card-image[b-lvvd4eqbmt] {
        height: 140px;
    }

    .card-content[b-lvvd4eqbmt] {
        min-height: 140px;
    }
}

/* Tablet and small desktop */
@media (min-width: 481px) and (max-width: 768px) {
    .dashboard-wrapper[b-lvvd4eqbmt] {
        margin: 20px auto;
        padding: 0 14px;
    }

    .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.95rem;
            padding: 7px 11px;
        }

    .img-wrapper .e-card-image[b-lvvd4eqbmt] {
        height: 160px;
    }

    .card-content[b-lvvd4eqbmt] {
        min-height: 160px;
    }
}

/* Medium screens */
@media (min-width: 769px) and (max-width: 1023px) {
    .img-wrapper .e-card-image[b-lvvd4eqbmt] {
        height: 220px;
    }

    .card-content[b-lvvd4eqbmt] {
        min-height: 180px;
    }
}

/* Large desktops */
@media (min-width: 1024px) {
    .img-wrapper .e-card-image[b-lvvd4eqbmt] {
        height: 260px;
    }

    .dashboard-wrapper[b-lvvd4eqbmt] {
        padding: 0 24px;
    }
}
/* /Components/Pages/HelpCenter.razor.rz.scp.css */
.limar-accordion[b-w9r6ff4vl3] {
    border: none !important;
    border-radius: 12px !important;
    overflow: hidden;
}

.e-accordion .e-acrdn-item[b-w9r6ff4vl3] {
    border-bottom: 1px solid #f0f0f0 !important;
}

    .e-accordion .e-acrdn-item .e-acrdn-header[b-w9r6ff4vl3] {
        padding: 15px 20px !important;
        background-color: #fff !important;
    }

        .e-accordion .e-acrdn-item .e-acrdn-header:hover[b-w9r6ff4vl3] {
            background-color: #fafafa !important;
        }

    .e-accordion .e-acrdn-item.e-select > .e-acrdn-header[b-w9r6ff4vl3] {
        background-color: #fff !important;
    }

.faq-content p[b-w9r6ff4vl3] {
    line-height: 1.6;
}
/* /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;
}

.font-arial[b-8gn5ivwnl0] {
    font-family: 'Comfortaa', sans-serif;
}

.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;
}

.carousel-href[b-8gn5ivwnl0] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 5;
    text-indent: -9999px; /* visually hide text if needed */
}


/* 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;
}
.carousel-img[b-8gn5ivwnl0] {
    height: 250px; 
    object-fit: cover; 
    border-radius: 8px;
}
.carousel-href[b-8gn5ivwnl0] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.carousel-clickable-wrapper[b-8gn5ivwnl0] {
    cursor: pointer;
}
/* /Components/Pages/HostDashboard.razor.rz.scp.css */
/* ============================
   MAIN WRAPPER & NAVIGATION
============================ */
.dashboard-wrapper[b-fck7573ayj] {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.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;
}

/* ============================
   BOOKING CARD
============================ */
.booking-card[b-fck7573ayj] {
    border-radius: 12px;
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

    .booking-card:hover[b-fck7573ayj] {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

/* Image wrapper ensures proper clipping and consistent heights */
.booking-image[b-fck7573ayj],
.img-wrapper[b-fck7573ayj] {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    background-color: #f6f6f6; /* fallback while image loads */
}

    .img-wrapper img[b-fck7573ayj],
    .booking-image img[b-fck7573ayj],
    .img-wrapper .e-card-image[b-fck7573ayj] {
        width: 100%;
        height: 200px; /* default desktop height */
        display: block;
        object-fit: cover;
        object-position: center;
        border-radius: 0; /* wrapper handles radius */
        vertical-align: middle;
    }

    /* Optional subtle overlay for readability when text overlays images */
    /* .booking-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.04), rgba(0,0,0,0.12));
    pointer-events: none;
    z-index: 1;
} */

    .booking-image > *[b-fck7573ayj],
    .img-wrapper > *[b-fck7573ayj] {
        position: relative;
        z-index: 2;
    }

.booking-header h5[b-fck7573ayj] {
    font-size: 1.1rem;
    font-weight: 600;
}

.card-content[b-fck7573ayj] {
    min-height: 180px; /* ensures footer aligns across cards */
}

/* ============================
   TEXT & STATUS UTILITIES
============================ */
.online-status[b-fck7573ayj] {
    font-size: 0.9rem;
}

.booking-policy[b-fck7573ayj] {
    font-size: 0.85rem;
    color: #6c757d;
}

.info-icon[b-fck7573ayj] {
    cursor: pointer;
    font-size: 1rem;
    color: #0d6efd;
    margin-left: 5px;
}

/* Status Colors (Host Logic Mappings) */
.text-success[b-fck7573ayj] {
    color: #198754 !important;
}

.text-secondary[b-fck7573ayj] {
    color: #6c757d !important;
}

.bg-success[b-fck7573ayj] {
    background-color: #198754 !important;
}

.bg-danger[b-fck7573ayj] {
    background-color: #dc3545 !important;
}

/* Payment Badges */
.status-authorized[b-fck7573ayj] {
    background-color: #ffc107;
    color: #000;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
}

.status-default[b-fck7573ayj] {
    background-color: lightgrey !important;
    color: #000;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
}

.status-captured[b-fck7573ayj] {
    background-color: #198754;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
}

.status-partial[b-fck7573ayj] {
    background-color: #0d6efd;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
}

.status-cancelled[b-fck7573ayj] {
    background-color: #dc3545;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
}

/* ============================
   FOOTER & BUTTONS
============================ */
.booking-footer[b-fck7573ayj] {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    padding: 12px;
}

.booking-actions[b-fck7573ayj] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

    .booking-actions .btn[b-fck7573ayj] {
        font-size: 0.85rem;
        padding: 0.375rem 0.75rem;
        border-radius: 6px;
        font-weight: 500;
    }

/* ============================
   EMPTY STATE
============================ */
.no-data[b-fck7573ayj] {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-top: 20px;
}

/* ============================
   RESPONSIVE
============================ */
/* Small phones */
@media (max-width: 480px) {
    .dashboard-wrapper[b-fck7573ayj] {
        margin: 16px auto;
        padding: 0 12px;
    }

    .dashboard-header h1[b-fck7573ayj] {
        font-size: 1.6rem;
    }

    .dashboard-nav[b-fck7573ayj] {
        margin: 8px 12px;
        padding: 10px 12px;
    }

        .dashboard-nav .e-toolbar-items[b-fck7573ayj] {
            justify-content: flex-start;
        }

        .dashboard-nav .e-btn[b-fck7573ayj] {
            font-size: 0.9rem;
            padding: 6px 10px;
        }

    .img-wrapper img[b-fck7573ayj],
    .booking-image img[b-fck7573ayj],
    .img-wrapper .e-card-image[b-fck7573ayj] {
        height: 140px;
    }

    .card-content[b-fck7573ayj] {
        min-height: 140px;
    }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 768px) {
    .dashboard-wrapper[b-fck7573ayj] {
        margin: 20px auto;
        padding: 0 14px;
    }

    .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.95rem;
            padding: 7px 11px;
        }

    .img-wrapper img[b-fck7573ayj],
    .booking-image img[b-fck7573ayj],
    .img-wrapper .e-card-image[b-fck7573ayj] {
        height: 160px;
    }

    .card-content[b-fck7573ayj] {
        min-height: 160px;
    }
}

/* Medium screens */
@media (min-width: 769px) and (max-width: 1023px) {
    .img-wrapper img[b-fck7573ayj],
    .booking-image img[b-fck7573ayj],
    .img-wrapper .e-card-image[b-fck7573ayj] {
        height: 220px;
    }

    .card-content[b-fck7573ayj] {
        min-height: 180px;
    }
}

/* Large desktops */
@media (min-width: 1024px) {
    .img-wrapper img[b-fck7573ayj],
    .booking-image img[b-fck7573ayj],
    .img-wrapper .e-card-image[b-fck7573ayj] {
        height: 260px;
    }

    .dashboard-wrapper[b-fck7573ayj] {
        padding: 0 24px;
    }
}
/* /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: #007bff !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;
}

.card.apartment-card[b-01q8203f3x] {
    position: relative;
    border: none !important; 
    border-radius: 12px; 
    overflow: hidden; 
    transition: transform 0.2s ease;
}

.card.apartment-card.apartment-card-selected[b-01q8203f3x]::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; 
    border: 2px solid #ff5a5f !important; 
    border-radius: inherit; 
    pointer-events: none;
    box-sizing: border-box; 
}

.card.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;
    }
}

.facility-chip[b-01q8203f3x] {
    background: #f1f3f5;
    color: #111;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-right: 6px;
    margin-bottom: 4px;
}

.rule-chip[b-01q8203f3x] {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    background-color: #e9ecef; /* Light gray background */
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #495057;
    border: 1px solid #dee2e6;
}

.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: #007bff !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;
    }
