/* /Components/Layout/AuthLayout.razor.rz.scp.css */
/* Auth Layout Styles */

/* Desktop header - logo aligned left */
.nav-header.bg-transparent .nav-top[b-5cek2kdrxc] {
    justify-content: flex-start;
    padding-left: 30px;
}

/* Blazor error UI - hidden by default */
#blazor-error-ui[b-5cek2kdrxc] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-5cek2kdrxc] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* Image panel - desktop */
.auth-image-panel[b-5cek2kdrxc] {
    width: 60%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Content panel - desktop */
.auth-content-panel[b-5cek2kdrxc] {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Content wrapper */
.auth-content-wrapper[b-5cek2kdrxc] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
}

/* Mobile logo - hidden on desktop */
.mobile-logo[b-5cek2kdrxc] {
    display: none;
}

/* Mobile styles */
@media (max-width: 1199.98px) {
    /* Content panel takes full width on mobile with background image */
    .auth-content-panel[b-5cek2kdrxc] {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        background-image: var(--mobile-bg-image);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
    }

    /* Add overlay to make content more readable on mobile */
    .auth-content-panel[b-5cek2kdrxc]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0);
        z-index: 0;
        border-radius: 30px;
    }

    /* Ensure content is above the overlay */
    .mobile-logo[b-5cek2kdrxc],
    .auth-content-wrapper[b-5cek2kdrxc] {
        position: relative;
        z-index: 1;
    }

    /* Show mobile logo */
    .mobile-logo[b-5cek2kdrxc] {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px 0;
    }

    .mobile-logo a[b-5cek2kdrxc] {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
    }

    .mobile-logo img[b-5cek2kdrxc] {
        margin-bottom: 10px;
    }

    .mobile-logo .logo-text[b-5cek2kdrxc] {
        display: block;
        font-size: 32px;
    }

    /* Center the content wrapper */
    .auth-content-wrapper[b-5cek2kdrxc] {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
        width: 100%;
    }
}

/* /Components/Layout/LandingLayout.razor.rz.scp.css */
/* LandingLayout Scoped Styles */

/* White background for the entire layout */
:host[b-rp7pzxf402] {
    display: block;
    background-color: #ffffff;
    min-height: 100vh;
}

/* Ensure body has no margin/padding for full-width layout */
[b-rp7pzxf402] body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #ffffff;
}

/* Main content wrapper */
[b-rp7pzxf402] .landing-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-6mgcte31cr] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-6mgcte31cr] {
    flex: 1;
}

.sidebar[b-6mgcte31cr] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-6mgcte31cr] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-6mgcte31cr]  a, .top-row[b-6mgcte31cr]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-6mgcte31cr]  a:hover, .top-row[b-6mgcte31cr]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-6mgcte31cr]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-6mgcte31cr] {
        justify-content: space-between;
    }

    .top-row[b-6mgcte31cr]  a, .top-row[b-6mgcte31cr]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-6mgcte31cr] {
        flex-direction: row;
    }

    .sidebar[b-6mgcte31cr] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-6mgcte31cr] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-6mgcte31cr]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-6mgcte31cr], article[b-6mgcte31cr] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-6mgcte31cr] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-6mgcte31cr] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavHeader.razor.rz.scp.css */
.search-result-item[b-dajz4kt5tc] {
    transition: background-color 0.15s ease;
}

.search-result-item:hover[b-dajz4kt5tc] {
    background-color: #f5f5f5;
}

.search-result-item:last-child[b-dajz4kt5tc] {
    border-bottom: none !important;
}

/* Notification styles */
.notification-item[b-dajz4kt5tc] {
    transition: background-color 0.15s ease;
    border-radius: 8px;
    padding: 10px 10px 10px 50px !important;
}

.notification-item:hover[b-dajz4kt5tc] {
    background-color: #f8f9fa;
}

.notification-item.unread[b-dajz4kt5tc] {
    background-color: #f0f7ff;
}

.notification-item.unread:hover[b-dajz4kt5tc] {
    background-color: #e3f0ff;
}

.notification-item:last-child[b-dajz4kt5tc] {
    margin-bottom: 0 !important;
}

/* Dropdown menu custom width */
[b-dajz4kt5tc] .dropdown-menu {
    max-height: 400px;
    overflow-y: auto;
}

/* Scrollbar styling for notification dropdown */
[b-dajz4kt5tc] .dropdown-menu::-webkit-scrollbar {
    width: 4px;
}

[b-dajz4kt5tc] .dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
}

[b-dajz4kt5tc] .dropdown-menu::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

/* Animation for new notifications */
@keyframes notificationPulse-b-dajz4kt5tc {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.dot-count[b-dajz4kt5tc] {
    animation: notificationPulse-b-dajz4kt5tc 2s ease-in-out infinite;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-xjbw3df5r8] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-xjbw3df5r8] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-xjbw3df5r8] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-xjbw3df5r8] {
    font-size: 1.1rem;
}

.bi[b-xjbw3df5r8] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-xjbw3df5r8] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-xjbw3df5r8] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-xjbw3df5r8] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-xjbw3df5r8] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-xjbw3df5r8] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-xjbw3df5r8] {
        padding-bottom: 1rem;
    }

    .nav-item[b-xjbw3df5r8]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-xjbw3df5r8]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-xjbw3df5r8]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-xjbw3df5r8] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-xjbw3df5r8] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-xjbw3df5r8] {
        display: none;
    }

    .nav-scrollable[b-xjbw3df5r8] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-rnvyo8sewp],
.components-reconnect-repeated-attempt-visible[b-rnvyo8sewp],
.components-reconnect-failed-visible[b-rnvyo8sewp],
.components-pause-visible[b-rnvyo8sewp],
.components-resume-failed-visible[b-rnvyo8sewp],
.components-rejoining-animation[b-rnvyo8sewp] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-rnvyo8sewp],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-rnvyo8sewp],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-rnvyo8sewp],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-rnvyo8sewp],
#components-reconnect-modal.components-reconnect-retrying[b-rnvyo8sewp],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-rnvyo8sewp],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-rnvyo8sewp],
#components-reconnect-modal.components-reconnect-failed[b-rnvyo8sewp],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-rnvyo8sewp] {
    display: block;
}


#components-reconnect-modal[b-rnvyo8sewp] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-rnvyo8sewp 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-rnvyo8sewp 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-rnvyo8sewp 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-rnvyo8sewp]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-rnvyo8sewp 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-rnvyo8sewp {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-rnvyo8sewp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-rnvyo8sewp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-rnvyo8sewp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-rnvyo8sewp] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-rnvyo8sewp] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-rnvyo8sewp] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-rnvyo8sewp] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-rnvyo8sewp] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-rnvyo8sewp] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-rnvyo8sewp 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-rnvyo8sewp] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-rnvyo8sewp {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Layout/RightChat.razor.rz.scp.css */
/* Right Chat Sidebar Styles */

/* Contact item hover effect */
.contact-item:hover[b-4yt1zg3n2u],
.group-item:hover[b-4yt1zg3n2u],
.page-item:hover[b-4yt1zg3n2u] {
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

/* Online indicator dot */
.online-indicator[b-4yt1zg3n2u] {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: #10d876;
    border: 2px solid white;
    border-radius: 50%;
}

/* Avatar figure positioning */
.avatar[b-4yt1zg3n2u] {
    position: relative;
}

/* Rounded circle for images */
.rounded-circle[b-4yt1zg3n2u] {
    border-radius: 50% !important;
    object-fit: cover;
}

/* Loading spinner positioning */
.spinner-border-sm[b-4yt1zg3n2u] {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* Flex grow for name containers */
.flex-grow-1[b-4yt1zg3n2u] {
    flex-grow: 1;
}

/* Hover state for list items */
[b-4yt1zg3n2u] .list-group-item {
    transition: all 0.2s ease;
}

/* Badge styling */
.badge-primary[b-4yt1zg3n2u] {
    background-color: #1e74fd;
}

/* Status indicators */
.btn-round-xss[b-4yt1zg3n2u] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

/* Group/Page initials badge */
.btn-round-sm[b-4yt1zg3n2u] {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
}

/* Gradient classes */
.bg-primary-gradiant[b-4yt1zg3n2u] {
    background: linear-gradient(to right, #1e74fd, #4a90fe);
}

.bg-gold-gradiant[b-4yt1zg3n2u] {
    background: linear-gradient(to right, #f7c94b, #f9da6a);
}

.bg-red-gradiant[b-4yt1zg3n2u] {
    background: linear-gradient(to right, #e50202, #ff4545);
}

.bg-mini-gradiant[b-4yt1zg3n2u] {
    background: linear-gradient(to right, #05f0ff, #7367f0);
}

.bg-blue-gradiant[b-4yt1zg3n2u] {
    background: linear-gradient(to right, #4a90fe, #1e74fd);
}

/* Section spacing */
.section[b-4yt1zg3n2u] {
    padding-left: 1rem;
    padding-right: 0.75rem;
}

/* Empty state text */
.text-grey-500[b-4yt1zg3n2u] {
    color: #adb5bd;
}

/* Scrollbar styling */
.right-scroll-bar[b-4yt1zg3n2u] {
    overflow-y: auto;
    max-height: calc(100vh - 100px);
}

.right-scroll-bar[b-4yt1zg3n2u]::-webkit-scrollbar {
    width: 4px;
}

.right-scroll-bar[b-4yt1zg3n2u]::-webkit-scrollbar-track {
    background: transparent;
}

.right-scroll-bar[b-4yt1zg3n2u]::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

/* Refresh button */
.btn-light[b-4yt1zg3n2u] {
    background-color: #f8f9fa;
    border-color: #e9ecef;
}

.btn-light:hover[b-4yt1zg3n2u] {
    background-color: #e9ecef;
}

/* Animation for loading state */
@keyframes fadeIn-b-4yt1zg3n2u {
    from { opacity: 0; }
    to { opacity: 1; }
}

.contact-item[b-4yt1zg3n2u],
.group-item[b-4yt1zg3n2u],
.page-item[b-4yt1zg3n2u] {
    animation: fadeIn-b-4yt1zg3n2u 0.3s ease-in-out;
}

/* /Components/Pages/Admin/CMS/MediaLibrary.razor.rz.scp.css */
.media-card[b-zbb22b85p1] {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.media-card:hover[b-zbb22b85p1] {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.media-actions[b-zbb22b85p1] {
    opacity: 0;
    transition: opacity 0.2s;
}

.media-card:hover .media-actions[b-zbb22b85p1] {
    opacity: 1;
}

.cursor-pointer[b-zbb22b85p1] {
    cursor: pointer;
}

.media-preview[b-zbb22b85p1] {
    max-height: 300px;
    object-fit: contain;
}

.folder-drop-zone[b-zbb22b85p1] {
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    transition: border-color 0.3s, background-color 0.3s;
}

.folder-drop-zone.drag-over[b-zbb22b85p1] {
    border-color: #667eea;
    background-color: rgba(102, 126, 234, 0.05);
}

.upload-progress[b-zbb22b85p1] {
    height: 4px;
    background-color: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.upload-progress-bar[b-zbb22b85p1] {
    height: 100%;
    background: linear-gradient(to right, #667eea, #764ba2);
    transition: width 0.3s;
}

/* /Components/Pages/BookTravel.razor.rz.scp.css */
/* Book Travel iframe styles */
.expedia-widget-wrapper[b-uwcihabiki] {
    min-height: 200px;
    border-radius: 15px;
    overflow: hidden;
    border: none !important;
}

    .expedia-widget-wrapper iframe[b-uwcihabiki] {
        border: none !important;
        outline: none !important;
    }
/* /Components/Pages/Message.razor.rz.scp.css */
/* Message Page Styles */

/* Main message container with responsive height */
.message-container[b-kmifq42imi] {
    height: calc(100vh - 140px);
}

/* Mobile: Account for fixed app-footer */
@media (max-width: 991.98px) {
    .message-container[b-kmifq42imi] {
        /* Full viewport minus top nav (~76px) minus space for chat input and app-footer */
        height: calc(100vh - 76px - 120px - env(safe-area-inset-bottom, 0px));
        padding-bottom: 0;
    }
}

/* Ensure chat wrapper uses full height properly and doesn't overflow */
.chat-wrapper[b-kmifq42imi] {
    position: relative;
    max-height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Make chat footer always visible at the bottom - desktop */
.chat-footer[b-kmifq42imi] {
    position: sticky;
    bottom: 0;
    background-color: white;
    z-index: 10;
    flex-shrink: 0 !important;
}

/* Mobile: Fix the chat footer above the app-footer */
@media (max-width: 991.98px) {
    .chat-footer[b-kmifq42imi] {
        position: fixed !important;
        bottom: calc(56px + env(safe-area-inset-bottom, 0px));
        left: 0;
        right: 0;
        z-index: 99;
        background-color: white;
        border-top: 1px solid #eee;
        padding: 0.75rem 1rem !important;
    }
}

/* Ensure chat body scrolls independently and doesn't push footer off screen */
.chat-body[b-kmifq42imi] {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1 1 auto;
    min-height: 0;
}

/* Mobile: Add bottom padding to chat body to account for fixed chat-footer */
@media (max-width: 991.98px) {
    .chat-body[b-kmifq42imi] {
        padding-bottom: 70px;
    }
}

/* /Components/Pages/Profile.razor.rz.scp.css */
.avatar-hover[b-u09al6bwmn] {
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.avatar-hover:hover[b-u09al6bwmn] {
    opacity: 0.8;
    transform: scale(1.02);
}

.avatar-hover[b-u09al6bwmn]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.2s ease;
    pointer-events: none;
}

.avatar-hover:hover[b-u09al6bwmn]::after {
    background: rgba(0, 0, 0, 0.1);
}

/* /Components/Pages/Tripszing.razor.rz.scp.css */
/* Tripszing Page Custom Styles */

/* Enhanced card styling */
.trip-card[b-y1qb6yvb4e] {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.trip-card:hover[b-y1qb6yvb4e] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

/* Header gradient */
.tripszing-header[b-y1qb6yvb4e] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.tripszing-header h2[b-y1qb6yvb4e] {
    color: white !important;
    margin: 0;
}

/* Tab styling */
.tripszing-tabs[b-y1qb6yvb4e] {
    background: white;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tripszing-tabs .nav-link[b-y1qb6yvb4e] {
    border: none;
    color: #6c757d;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.tripszing-tabs .nav-link:hover[b-y1qb6yvb4e] {
    background-color: #f8f9fa;
    color: #495057;
}

.tripszing-tabs .nav-link.active[b-y1qb6yvb4e] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
}

/* Search section */
.search-section[b-y1qb6yvb4e] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.search-section input[b-y1qb6yvb4e] {
    border-radius: 10px;
    border: none;
    padding: 0.75rem 1rem;
}

.search-section button[b-y1qb6yvb4e] {
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

/* Trip cards grid */
.trips-grid[b-y1qb6yvb4e] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .trips-grid[b-y1qb6yvb4e] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .trips-grid[b-y1qb6yvb4e] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1600px) {
    .trips-grid[b-y1qb6yvb4e] {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Enhanced empty state */
.empty-state[b-y1qb6yvb4e] {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 15px;
}

.empty-state i[b-y1qb6yvb4e] {
    font-size: 4rem;
    opacity: 0.5;
}

/* Request cards */
.request-card[b-y1qb6yvb4e] {
    border-left: 4px solid #667eea;
    transition: all 0.2s ease;
}

.request-card:hover[b-y1qb6yvb4e] {
    border-left-color: #764ba2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Button enhancements */
.btn-gradient[b-y1qb6yvb4e] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    transition: transform 0.2s ease;
}

.btn-gradient:hover[b-y1qb6yvb4e] {
    transform: scale(1.05);
    color: white;
}

