/* /Components/Layout/AdminLayout.razor.rz.scp.css */
/* ========================================
   Admin Layout Styles
   ======================================== */
.admin-wrapper[b-6awwsy7b31] {
    display: flex;
    min-height: 100vh;
    background: #f4f6f9;
}

/* Sidebar */
.admin-sidebar[b-6awwsy7b31] {
    width: 260px;
    background: #1e2530;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1000;
}

.admin-sidebar-header[b-6awwsy7b31] {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.admin-logo img[b-6awwsy7b31] {
    height: 40px;
    width: auto;
}

.admin-label[b-6awwsy7b31] {
    display: block;
    color: #bfa67a;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* Navigation */
.admin-nav[b-6awwsy7b31] {
    flex: 1;
    padding: 20px 0;
}

.admin-nav-item[b-6awwsy7b31] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #a0a4a8;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.admin-nav-item:hover[b-6awwsy7b31] {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.admin-nav-item.active[b-6awwsy7b31] {
    background: rgba(191, 166, 122, 0.1);
    color: #bfa67a;
    border-left-color: #bfa67a;
}

.admin-nav-item i[b-6awwsy7b31] {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.admin-nav-item .badge[b-6awwsy7b31] {
    margin-left: auto;
    background: #dc3545;
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
}

/* Sidebar Footer */
.admin-sidebar-footer[b-6awwsy7b31] {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar-footer .logout-link:hover[b-6awwsy7b31] {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

/* Main Content */
.admin-content[b-6awwsy7b31] {
    flex: 1;
    margin-left: 260px;
    padding: 30px;
    min-height: 100vh;
}

/* Responsive */
@media (max-width: 991px) {
    .admin-sidebar[b-6awwsy7b31] {
        width: 80px;
    }
    
    .admin-sidebar-header[b-6awwsy7b31] {
        padding: 15px 10px;
    }
    
    .admin-logo img[b-6awwsy7b31] {
        height: 30px;
    }
    
    .admin-label[b-6awwsy7b31],
    .admin-nav-item span[b-6awwsy7b31] {
        display: none;
    }
    
    .admin-nav-item[b-6awwsy7b31] {
        justify-content: center;
        padding: 14px;
    }
    
    .admin-nav-item i[b-6awwsy7b31] {
        margin: 0;
    }
    
    .admin-nav-item .badge[b-6awwsy7b31] {
        position: absolute;
        top: 5px;
        right: 10px;
        margin: 0;
    }
    
    .admin-content[b-6awwsy7b31] {
        margin-left: 80px;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* MainLayout Styles - Modern Blazor Navigation */

main[b-rpotx0iwga] {
    min-height: 100vh;
}

/* Side Menu Overlay */
.menu-overlay[b-rpotx0iwga] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    animation: fadeIn-b-rpotx0iwga 0.3s ease;
}

@keyframes fadeIn-b-rpotx0iwga {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Side Menu */
.side-menu[b-rpotx0iwga] {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #1e2530;
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.side-menu.open[b-rpotx0iwga] {
    right: 0;
}

.close-menu-btn[b-rpotx0iwga] {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.close-menu-btn:hover[b-rpotx0iwga] {
    color: #bfa67a;
}

.side-menu-nav ul[b-rpotx0iwga] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu-nav li[b-rpotx0iwga] {
    margin-bottom: 20px;
}

.side-menu-nav a[b-rpotx0iwga] {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 10px 0;
}

.side-menu-nav a:hover[b-rpotx0iwga] {
    color: #bfa67a;
}

#blazor-error-ui[b-rpotx0iwga] {
    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-rpotx0iwga] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Navigation Bar */
.navbar[b-r32i2mfjc9] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.navbar.scrolled[b-r32i2mfjc9] {
    background: rgba(0, 0, 0, 0.9);
}

.navbar-brand img[b-r32i2mfjc9] {
    height: 40px;
    width: auto;
}

/* Hamburger Menu Button */
.menu-btn[b-r32i2mfjc9] {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-btn:hover[b-r32i2mfjc9] {
    opacity: 0.8;
}

/* Side Menu Overlay */
.menu-overlay[b-r32i2mfjc9] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
}

/* Slide-out Side Menu */
.side-menu[b-r32i2mfjc9] {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 1100;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.side-menu.open[b-r32i2mfjc9] {
    right: 0;
}

/* Close Button */
.close-menu-btn[b-r32i2mfjc9] {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    align-self: flex-end;
    padding: 0.5rem;
    margin-bottom: 2rem;
}

.close-menu-btn:hover[b-r32i2mfjc9] {
    opacity: 0.8;
}

/* Side Menu Navigation */
.side-menu-nav[b-r32i2mfjc9] {
    flex: 1;
}

.side-menu-nav ul[b-r32i2mfjc9] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.side-menu-nav li[b-r32i2mfjc9] {
    display: block;
}

.side-menu-nav a[b-r32i2mfjc9] {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.side-menu-nav a:hover[b-r32i2mfjc9] {
    color: #f0c674;
    padding-left: 0.5rem;
}

/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-okde1a8qol],
.components-reconnect-repeated-attempt-visible[b-okde1a8qol],
.components-reconnect-failed-visible[b-okde1a8qol],
.components-pause-visible[b-okde1a8qol],
.components-resume-failed-visible[b-okde1a8qol],
.components-rejoining-animation[b-okde1a8qol] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-okde1a8qol],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-okde1a8qol],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-okde1a8qol],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-okde1a8qol],
#components-reconnect-modal.components-reconnect-retrying[b-okde1a8qol],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-okde1a8qol],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-okde1a8qol],
#components-reconnect-modal.components-reconnect-failed[b-okde1a8qol],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-okde1a8qol] {
    display: block;
}


#components-reconnect-modal[b-okde1a8qol] {
    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-okde1a8qol 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-okde1a8qol 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-okde1a8qol 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-okde1a8qol]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-okde1a8qol 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-okde1a8qol {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-okde1a8qol {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-okde1a8qol {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-okde1a8qol] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-okde1a8qol] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-okde1a8qol] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-okde1a8qol] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-okde1a8qol] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-okde1a8qol] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-okde1a8qol] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-okde1a8qol 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-okde1a8qol] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-okde1a8qol {
    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/Pages/Admin/Dashboard.razor.rz.scp.css */
/* ========================================
   Admin Page Common Styles
   ======================================== */
.admin-page-header[b-75dk3kikct] {
    margin-bottom: 30px;
}

.admin-page-header h1[b-75dk3kikct] {
    font-size: 1.8rem;
    color: #1e2530;
    margin-bottom: 5px;
}

/* Stats Grid */
.stats-grid[b-75dk3kikct] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.stat-card[b-75dk3kikct] {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stat-icon[b-75dk3kikct] {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.stat-content h3[b-75dk3kikct] {
    font-size: 1.8rem;
    margin: 0;
    color: #1e2530;
}

.stat-content p[b-75dk3kikct] {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Admin Card */
.admin-card[b-75dk3kikct] {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.admin-card-header[b-75dk3kikct] {
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-card-header h3[b-75dk3kikct] {
    margin: 0;
    font-size: 1.1rem;
    color: #1e2530;
}

.admin-card-header .view-all[b-75dk3kikct] {
    color: #bfa67a;
    font-size: 0.9rem;
    text-decoration: none;
}

.admin-card-header .view-all:hover[b-75dk3kikct] {
    text-decoration: underline;
}

.admin-card-body[b-75dk3kikct] {
    padding: 20px;
}

/* Quick Actions */
.quick-actions[b-75dk3kikct] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.quick-action-btn[b-75dk3kikct] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #1e2530;
    transition: all 0.2s ease;
}

.quick-action-btn:hover[b-75dk3kikct] {
    background: #bfa67a;
    color: #fff;
}

.quick-action-btn i[b-75dk3kikct] {
    font-size: 1.5rem;
}

.quick-action-btn span[b-75dk3kikct] {
    font-size: 0.9rem;
    text-align: center;
}

/* Message List */
.message-list[b-75dk3kikct] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message-item[b-75dk3kikct] {
    display: flex;
    gap: 15px;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.message-item:hover[b-75dk3kikct] {
    background: #f8f9fa;
}

.message-item.unread[b-75dk3kikct] {
    background: #fff8e6;
}

.message-avatar[b-75dk3kikct] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #bfa67a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.message-content[b-75dk3kikct] {
    flex: 1;
    min-width: 0;
}

.message-content strong[b-75dk3kikct] {
    display: block;
    font-size: 0.95rem;
    color: #1e2530;
}

.message-content p[b-75dk3kikct] {
    margin: 3px 0;
    font-size: 0.85rem;
    color: #6c757d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.message-content small[b-75dk3kikct] {
    color: #adb5bd;
    font-size: 0.75rem;
}
/* /Components/Pages/Admin/Login.razor.rz.scp.css */
.login-container[b-zk4hjrbvhq] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 20px;
}

.login-card[b-zk4hjrbvhq] {
    background: white;
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.login-header[b-zk4hjrbvhq] {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo[b-zk4hjrbvhq] {
    max-width: 180px;
    margin-bottom: 20px;
}

.login-header h1[b-zk4hjrbvhq] {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 8px;
}

.login-header p[b-zk4hjrbvhq] {
    font-size: 0.95rem;
}

.form-group[b-zk4hjrbvhq] {
    margin-bottom: 20px;
}

.form-group label[b-zk4hjrbvhq] {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
}

.form-group .form-control[b-zk4hjrbvhq] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group .form-control:focus[b-zk4hjrbvhq] {
    outline: none;
    border-color: var(--gold, #bfa67a);
    box-shadow: 0 0 0 3px rgba(191, 166, 122, 0.15);
}

.alert[b-zk4hjrbvhq] {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-danger[b-zk4hjrbvhq] {
    background-color: #fee2e2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.alert i[b-zk4hjrbvhq] {
    font-size: 1.2rem;
}

.btn-skin[b-zk4hjrbvhq] {
    background-color: var(--gold, #bfa67a);
    border-color: var(--gold, #bfa67a);
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-skin:hover[b-zk4hjrbvhq] {
    background-color: #a89162;
    border-color: #a89162;
    color: white;
}

.btn-skin:disabled[b-zk4hjrbvhq] {
    opacity: 0.7;
    cursor: not-allowed;
}

.login-footer[b-zk4hjrbvhq] {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.back-link[b-zk4hjrbvhq] {
    color: #666;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.back-link:hover[b-zk4hjrbvhq] {
    color: var(--gold, #bfa67a);
}

.spinner-border-sm[b-zk4hjrbvhq] {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

.validation-message[b-zk4hjrbvhq] {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 4px;
}

.text-muted[b-zk4hjrbvhq] {
    color: #6c757d;
}
/* /Components/Pages/Admin/Messages.razor.rz.scp.css */
/* ========================================
   Messages Page Styles
   ======================================== */
.messages-container[b-6q8qmsxuc4] {
    display: flex;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: calc(100vh - 200px);
    min-height: 500px;
    overflow: hidden;
}

/* Message List Panel */
.message-list-panel[b-6q8qmsxuc4] {
    width: 380px;
    border-right: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
}

.message-list-header[b-6q8qmsxuc4] {
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #6c757d;
}

.unread-count[b-6q8qmsxuc4] {
    background: #bfa67a;
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.message-list[b-6q8qmsxuc4] {
    flex: 1;
    overflow-y: auto;
}

.message-list-item[b-6q8qmsxuc4] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s ease;
    position: relative;
}

.message-list-item:hover[b-6q8qmsxuc4] {
    background: #f8f9fa;
}

.message-list-item.active[b-6q8qmsxuc4] {
    background: #fff8e6;
    border-left: 3px solid #bfa67a;
}

.message-list-item.unread[b-6q8qmsxuc4] {
    background: #fffef8;
}

.message-list-item.unread .message-preview strong[b-6q8qmsxuc4] {
    color: #1e2530;
}

.message-avatar[b-6q8qmsxuc4] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #bfa67a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.message-avatar.large[b-6q8qmsxuc4] {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.message-preview[b-6q8qmsxuc4] {
    flex: 1;
    min-width: 0;
}

.message-preview-header[b-6q8qmsxuc4] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

.message-preview strong[b-6q8qmsxuc4] {
    font-size: 0.95rem;
    color: #6c757d;
}

.message-time[b-6q8qmsxuc4] {
    font-size: 0.75rem;
    color: #adb5bd;
}

.message-excerpt[b-6q8qmsxuc4] {
    margin: 0;
    font-size: 0.85rem;
    color: #6c757d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.unread-dot[b-6q8qmsxuc4] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #bfa67a;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

/* Message Detail Panel */
.message-detail-panel[b-6q8qmsxuc4] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.message-detail-header[b-6q8qmsxuc4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.message-sender[b-6q8qmsxuc4] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sender-info h3[b-6q8qmsxuc4] {
    margin: 0;
    font-size: 1.1rem;
    color: #1e2530;
}

.sender-info a[b-6q8qmsxuc4] {
    color: #bfa67a;
    font-size: 0.9rem;
    text-decoration: none;
}

.sender-info a:hover[b-6q8qmsxuc4] {
    text-decoration: underline;
}

.message-actions[b-6q8qmsxuc4] {
    display: flex;
    gap: 8px;
}

.message-meta[b-6q8qmsxuc4] {
    padding: 15px 20px;
    background: #f8f9fa;
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #6c757d;
}

.message-meta i[b-6q8qmsxuc4] {
    margin-right: 5px;
}

.message-body[b-6q8qmsxuc4] {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.message-body p[b-6q8qmsxuc4] {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    white-space: pre-wrap;
}

.message-reply-section[b-6q8qmsxuc4] {
    padding: 20px;
    border-top: 1px solid #e9ecef;
}

/* No Message Selected */
.no-message-selected[b-6q8qmsxuc4] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}

.no-message-selected i[b-6q8qmsxuc4] {
    font-size: 4rem;
    margin-bottom: 15px;
}

/* Modal Styles (inherited from ProjectList) */
.modal-overlay[b-6q8qmsxuc4] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-dialog[b-6q8qmsxuc4] {
    background: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header[b-6q8qmsxuc4] {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h3[b-6q8qmsxuc4] {
    margin: 0;
    font-size: 1.2rem;
}

.modal-body[b-6q8qmsxuc4] {
    padding: 20px;
}

.modal-footer[b-6q8qmsxuc4] {
    padding: 15px 20px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .messages-container[b-6q8qmsxuc4] {
        flex-direction: column;
        height: auto;
    }
    
    .message-list-panel[b-6q8qmsxuc4] {
        width: 100%;
        max-height: 300px;
    }
    
    .message-detail-panel[b-6q8qmsxuc4] {
        min-height: 400px;
    }
}
/* /Components/Pages/Admin/ProjectEditor.razor.rz.scp.css */
/* ========================================
   Project Editor Form Styles
   ======================================== */
.project-form .form-group[b-w2bda3sbr8] {
    margin-bottom: 20px;
}

.project-form label[b-w2bda3sbr8] {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #1e2530;
    font-size: 0.9rem;
}

.project-form .form-control[b-w2bda3sbr8] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}

.project-form .form-control:focus[b-w2bda3sbr8] {
    outline: none;
    border-color: #bfa67a;
    box-shadow: 0 0 0 3px rgba(191, 166, 122, 0.1);
}

.project-form textarea.form-control[b-w2bda3sbr8] {
    resize: vertical;
    min-height: 120px;
}

/* Form Check */
.form-check[b-w2bda3sbr8] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-check-input[b-w2bda3sbr8] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-check-label[b-w2bda3sbr8] {
    cursor: pointer;
    margin: 0;
}

/* Image Upload */
.current-image[b-w2bda3sbr8] {
    position: relative;
    display: inline-block;
    max-width: 200px;
}

.current-image img[b-w2bda3sbr8] {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.remove-image[b-w2bda3sbr8] {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.remove-image:hover[b-w2bda3sbr8] {
    background: #dc3545;
}

/* Image Gallery */
.image-gallery[b-w2bda3sbr8] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.gallery-item[b-w2bda3sbr8] {
    position: relative;
    width: 100px;
    height: 75px;
}

.gallery-item img[b-w2bda3sbr8] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Features List */
.features-list[b-w2bda3sbr8] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item[b-w2bda3sbr8] {
    display: flex;
    gap: 10px;
}

.feature-item .form-control[b-w2bda3sbr8] {
    flex: 1;
}

.btn-remove[b-w2bda3sbr8] {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove:hover[b-w2bda3sbr8] {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

/* Buttons */
.btn-outline-secondary[b-w2bda3sbr8] {
    background: transparent;
    border: 1px solid #6c757d;
    color: #6c757d;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.btn-outline-secondary:hover[b-w2bda3sbr8] {
    background: #6c757d;
    color: #fff;
}

.d-grid[b-w2bda3sbr8] {
    display: grid;
}

.gap-2[b-w2bda3sbr8] {
    gap: 10px;
}
/* /Components/Pages/Admin/ProjectList.razor.rz.scp.css */
/* ========================================
   Projects List Page Styles
   ======================================== */
.admin-table[b-eqvl0slphm] {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th[b-eqvl0slphm],
.admin-table td[b-eqvl0slphm] {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.admin-table th[b-eqvl0slphm] {
    background: #f8f9fa;
    font-weight: 600;
    color: #6c757d;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table tbody tr:hover[b-eqvl0slphm] {
    background: #f8f9fa;
}

.project-thumb[b-eqvl0slphm] {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
}

.featured-badge[b-eqvl0slphm] {
    display: inline-block;
    background: #bfa67a;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
}

/* Status Pills */
.status-pill[b-eqvl0slphm] {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-designphase[b-eqvl0slphm] {
    background: #e2d4f0;
    color: #5a3d7a;
}

.status-underconstruction[b-eqvl0slphm] {
    background: #fff3cd;
    color: #856404;
}

.status-available[b-eqvl0slphm] {
    background: #d4edda;
    color: #155724;
}

.status-sold[b-eqvl0slphm] {
    background: #f8d7da;
    color: #721c24;
}

.status-rented[b-eqvl0slphm] {
    background: #cce5ff;
    color: #004085;
}

.status-completed[b-eqvl0slphm] {
    background: #e2e3e5;
    color: #383d41;
}

/* Action Buttons */
.action-buttons[b-eqvl0slphm] {
    display: flex;
    gap: 8px;
}

.btn-icon[b-eqvl0slphm] {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    border: none;
    background: #f0f0f0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-icon:hover[b-eqvl0slphm] {
    background: #bfa67a;
    color: #fff;
}

.btn-icon.btn-danger:hover[b-eqvl0slphm] {
    background: #dc3545;
    color: #fff;
}

/* Modal Styles */
.modal-overlay[b-eqvl0slphm] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-dialog[b-eqvl0slphm] {
    background: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header[b-eqvl0slphm] {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h3[b-eqvl0slphm] {
    margin: 0;
    font-size: 1.2rem;
}

.modal-body[b-eqvl0slphm] {
    padding: 20px;
}

.modal-body p[b-eqvl0slphm] {
    margin: 0 0 10px;
}

.modal-footer[b-eqvl0slphm] {
    padding: 15px 20px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-secondary[b-eqvl0slphm] {
    background: #6c757d;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-danger[b-eqvl0slphm] {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
}
/* /Components/Pages/Admin/Settings.razor.rz.scp.css */
.settings-container[b-akb4dr700c] {
    max-width: 1200px;
}

.settings-section[b-akb4dr700c] {
    margin-bottom: 2rem;
}

.settings-section h3[b-akb4dr700c] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.settings-section h3 i[b-akb4dr700c] {
    font-size: 1.2rem;
    color: var(--gold);
}

.settings-grid[b-akb4dr700c] {
    display: grid;
    gap: 1.5rem;
}

.setting-item[b-akb4dr700c] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.setting-item label[b-akb4dr700c] {
    font-weight: 500;
    color: #333;
}

.setting-item label small[b-akb4dr700c] {
    font-weight: 400;
    font-size: 0.85rem;
}

.setting-item .form-control[b-akb4dr700c] {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.setting-item .form-control:focus[b-akb4dr700c] {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(191, 166, 122, 0.15);
    outline: none;
}

.setting-item textarea.form-control[b-akb4dr700c] {
    resize: vertical;
    min-height: 100px;
}

.setting-item .input-group[b-akb4dr700c] {
    display: flex;
}

.setting-item .input-group .form-control[b-akb4dr700c] {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.setting-item .input-group .btn[b-akb4dr700c] {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border: 1px solid #ddd;
    border-left: none;
    padding: 0.75rem 1rem;
}

.form-actions[b-akb4dr700c] {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    gap: 1rem;
}

.form-actions .btn-primary[b-akb4dr700c] {
    background-color: var(--gold);
    border-color: var(--gold);
}

.form-actions .btn-primary:hover[b-akb4dr700c] {
    background-color: #a89162;
    border-color: #a89162;
}

.loading-spinner[b-akb4dr700c] {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.loading-spinner i[b-akb4dr700c] {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    animation: spin-b-akb4dr700c 1s linear infinite;
}

@keyframes spin-b-akb4dr700c {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.alert[b-akb4dr700c] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.alert i[b-akb4dr700c] {
    font-size: 1.25rem;
}

.alert-success[b-akb4dr700c] {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger[b-akb4dr700c] {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.btn-close[b-akb4dr700c] {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.btn-close:hover[b-akb4dr700c] {
    opacity: 1;
}

.btn-close[b-akb4dr700c]::before {
    content: "×";
}

/* Responsive */
@media (min-width: 768px) {
    .settings-grid[b-akb4dr700c] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .setting-item:has(textarea)[b-akb4dr700c] {
        grid-column: span 2;
    }
}
/* /Components/Pages/PrivacyPolicy.razor.rz.scp.css */
/* ========================================
   Privacy Policy Header
   ======================================== */
.privacy-header[b-jsfj0mg4w2] {
    position: relative;
    height: 200px;
    background-image: url('/images/bg-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.privacy-header-overlay[b-jsfj0mg4w2] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

/* ========================================
   Privacy Policy Content
   ======================================== */
#privacy-content[b-jsfj0mg4w2] {
    background: #fff;
}

#privacy-content h4[b-jsfj0mg4w2] {
    color: #1e2530;
    font-weight: 600;
    margin-bottom: 15px;
}

#privacy-content p[b-jsfj0mg4w2] {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 15px;
}

#privacy-content ul[b-jsfj0mg4w2] {
    color: #6c757d;
    line-height: 1.8;
    padding-left: 20px;
}

#privacy-content ul li[b-jsfj0mg4w2] {
    margin-bottom: 10px;
}

#privacy-content a[b-jsfj0mg4w2] {
    color: #bfa67a;
}

#privacy-content a:hover[b-jsfj0mg4w2] {
    color: #9a8562;
    text-decoration: underline;
}
/* /Components/Pages/ProjectDetails.razor.rz.scp.css */
/* ========================================
   Project Hero Banner
   ======================================== */
.project-hero[b-6e6lq25d2c] {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.project-hero-overlay[b-6e6lq25d2c] {
    width: 100%;
    padding: 60px 0 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.project-hero h1[b-6e6lq25d2c] {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.project-hero .subtitle[b-6e6lq25d2c] {
    color: #bfa67a;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* ========================================
   Gallery Styles
   ======================================== */
.gallery-main[b-6e6lq25d2c] {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 15px;
}

.gallery-main img[b-6e6lq25d2c] {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-main:hover img[b-6e6lq25d2c] {
    transform: scale(1.02);
}

.gallery-zoom-hint[b-6e6lq25d2c] {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-main:hover .gallery-zoom-hint[b-6e6lq25d2c] {
    opacity: 1;
}

/* Thumbnail Strip */
.gallery-thumbnails[b-6e6lq25d2c] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.gallery-thumb[b-6e6lq25d2c] {
    width: 80px;
    height: 60px;
    padding: 0;
    border: 3px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    background: none;
}

.gallery-thumb img[b-6e6lq25d2c] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb:hover[b-6e6lq25d2c] {
    opacity: 0.9;
}

.gallery-thumb.active[b-6e6lq25d2c] {
    border-color: #bfa67a;
    opacity: 1;
}

/* ========================================
   Lightbox Modal
   ======================================== */
.lightbox-overlay[b-6e6lq25d2c] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-close[b-6e6lq25d2c] {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover[b-6e6lq25d2c] {
    opacity: 1;
}

.lightbox-content[b-6e6lq25d2c] {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 80vh;
    position: relative;
}

.lightbox-content img[b-6e6lq25d2c] {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-nav[b-6e6lq25d2c] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover[b-6e6lq25d2c] {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev[b-6e6lq25d2c] {
    left: -70px;
}

.lightbox-next[b-6e6lq25d2c] {
    right: -70px;
}

.lightbox-counter[b-6e6lq25d2c] {
    position: absolute;
    bottom: 30px;
    color: #fff;
    font-size: 1rem;
    opacity: 0.7;
}

/* ========================================
   Status Badges
   ======================================== */
.status-badge[b-6e6lq25d2c] {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-construction[b-6e6lq25d2c] {
    background: #ffc107;
    color: #1e2530;
}

.status-design[b-6e6lq25d2c] {
    background: #6f42c1;
    color: #fff;
}

.status-available[b-6e6lq25d2c] {
    background: #28a745;
    color: #fff;
}

.status-sold[b-6e6lq25d2c] {
    background: #dc3545;
    color: #fff;
}

/* ========================================
   Price Display
   ======================================== */
.project-price[b-6e6lq25d2c] {
    background: linear-gradient(135deg, #bfa67a 0%, #9a8562 100%);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 25px;
}

.project-price .price-label[b-6e6lq25d2c] {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.project-price .price-value[b-6e6lq25d2c] {
    display: block;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 991px) {
    .project-hero[b-6e6lq25d2c] {
        height: 50vh;
        min-height: 350px;
    }
    
    .project-hero h1[b-6e6lq25d2c] {
        font-size: 2.2rem;
    }
    
    .lightbox-nav[b-6e6lq25d2c] {
        display: none;
    }
}

@media (max-width: 767px) {
    .project-hero[b-6e6lq25d2c] {
        height: 40vh;
        min-height: 300px;
    }
    
    .project-hero h1[b-6e6lq25d2c] {
        font-size: 1.8rem;
    }
    
    .project-hero .subtitle[b-6e6lq25d2c] {
        font-size: 1rem;
    }
    
    .gallery-thumb[b-6e6lq25d2c] {
        width: 60px;
        height: 45px;
    }
}
/* /Components/Shared/HeroSection.razor.rz.scp.css */
.hero-slider[b-8qvcvb6tr3] {
    position: relative;
    min-height: 150px;
}

.hero-slider .slide[b-8qvcvb6tr3] {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-slider .slide.active[b-8qvcvb6tr3] {
    display: block;
    opacity: 1;
}

.hero-slider h1[b-8qvcvb6tr3] {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    animation: fadeInUp-b-8qvcvb6tr3 0.8s ease-out;
}

.hero-slider p[b-8qvcvb6tr3] {
    font-size: 1.3rem;
    opacity: 0.9;
    animation: fadeInUp-b-8qvcvb6tr3 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp-b-8qvcvb6tr3 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .hero-slider h1[b-8qvcvb6tr3] {
        font-size: 2rem;
    }
    
    .hero-slider p[b-8qvcvb6tr3] {
        font-size: 1rem;
    }
}

/* ========================================
   Scroll Indicator
   ======================================== */
.scroll-indicator[b-8qvcvb6tr3] {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    z-index: 10;
}

.scroll-indicator:hover[b-8qvcvb6tr3] {
    color: #bfa67a;
    text-decoration: none;
}

.scroll-text[b-8qvcvb6tr3] {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.scroll-arrow[b-8qvcvb6tr3] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: bounce-b-8qvcvb6tr3 2s infinite;
}

.scroll-arrow i[b-8qvcvb6tr3] {
    font-size: 1.2rem;
}

@keyframes bounce-b-8qvcvb6tr3 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

@media (max-width: 767px) {
    .scroll-indicator[b-8qvcvb6tr3] {
        bottom: 25px;
    }
    
    .scroll-text[b-8qvcvb6tr3] {
        display: none;
    }
    
    .scroll-arrow[b-8qvcvb6tr3] {
        width: 35px;
        height: 35px;
    }
}
/* /Components/Shared/ImageCarousel.razor.rz.scp.css */
.image-carousel[b-gffkzecg7u] {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.carousel-inner[b-gffkzecg7u] {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item[b-gffkzecg7u] {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel-item img[b-gffkzecg7u] {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-controls[b-gffkzecg7u] {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-btn[b-gffkzecg7u] {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover[b-gffkzecg7u] {
    background: #bfa67a;
    color: #fff;
}

.carousel-indicators[b-gffkzecg7u] {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.indicator[b-gffkzecg7u] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active[b-gffkzecg7u],
.indicator:hover[b-gffkzecg7u] {
    background: #bfa67a;
}
/* /Components/Shared/MarkdownEditor.razor.rz.scp.css */
.markdown-editor[b-cbto8xokox] {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.markdown-toolbar[b-cbto8xokox] {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    padding: 8px;
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.toolbar-btn[b-cbto8xokox] {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s;
}

.toolbar-btn:hover[b-cbto8xokox] {
    background: #e9ecef;
    border-color: #bbb;
}

.toolbar-btn.active[b-cbto8xokox] {
    background: var(--gold, #bfa67a);
    color: white;
    border-color: var(--gold, #bfa67a);
}

.toolbar-spacer[b-cbto8xokox] {
    flex: 1;
}

.markdown-content[b-cbto8xokox] {
    min-height: 150px;
}

.markdown-textarea[b-cbto8xokox] {
    border: none;
    border-radius: 0;
    resize: vertical;
    min-height: 150px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 14px;
    line-height: 1.5;
}

.markdown-textarea:focus[b-cbto8xokox] {
    box-shadow: none;
    outline: none;
}

.markdown-preview[b-cbto8xokox] {
    padding: 16px;
    min-height: 150px;
    background: white;
}

.markdown-preview h2[b-cbto8xokox] {
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.markdown-preview h3[b-cbto8xokox] {
    font-size: 1.25rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.markdown-preview p[b-cbto8xokox] {
    margin-bottom: 0.75rem;
}

.markdown-preview ul[b-cbto8xokox], 
.markdown-preview ol[b-cbto8xokox] {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
}

.markdown-preview li[b-cbto8xokox] {
    margin-bottom: 0.25rem;
}

.markdown-preview strong[b-cbto8xokox] {
    font-weight: 600;
}

.markdown-preview a[b-cbto8xokox] {
    color: var(--gold, #bfa67a);
}

.markdown-help[b-cbto8xokox] {
    padding: 8px 12px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}
/* /Components/Shared/ProjectCard.razor.rz.scp.css */
.project-card-link[b-tf6aegj1ck] {
    text-decoration: none;
    display: block;
}

.project-card-link:hover[b-tf6aegj1ck] {
    text-decoration: none;
}
