/* /Components/Account/Shared/ManageLayout.razor.rz.scp.css */
.admin-header[b-i1pxmrzxsr] {
    height: 60px;
}


/* Admin nav link */

[b-i1pxmrzxsr] .admin-link {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    color: rgba(255,255,255,0.75);
}

    [b-i1pxmrzxsr] .admin-link:hover {
        color: white;
    }

    [b-i1pxmrzxsr] .admin-link.active {
        color: white;
    }

        [b-i1pxmrzxsr] .admin-link.active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 100%;
            height: 2px;
            background: white;
        }
/* /Components/Admin/ImageSelector.razor.rz.scp.css */
/* Root container */
.image-selector[b-xwuge6g6uz] {
    display: flex;
    flex-direction: column;
}

    /* Muted text */
    .image-selector .text-muted[b-xwuge6g6uz] {
        color: #6c757d;
        font-size: 0.9rem;
    }

    /* Image grid */
    .image-selector .grid[b-xwuge6g6uz] {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
    }

    /* Thumbnail wrapper */
    .image-selector .image-thumb[b-xwuge6g6uz] {
        position: relative;
        border-radius: 0.5rem;
        overflow: hidden;
        border: 1px solid #e5e5e5;
        background: #f8f9fa;
        transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    }

        /* Hover interaction */
        .image-selector .image-thumb:hover[b-xwuge6g6uz] {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
            border-color: #cfcfcf;
        }

    /* Thumbnail image */
    .image-selector .image-thumb-img[b-xwuge6g6uz] {
        width: 100%;
        height: 120px;
        object-fit: cover;
        display: block;
    }

    /* Upload section */
    .image-selector .mt-md[b-xwuge6g6uz] {
        margin-top: 1rem;
    }

    /* Upload button tweak (optional enhancement) */
    .image-selector .button-secondary[b-xwuge6g6uz] {
        cursor: pointer;
        display: inline-block;
    }
/* /Components/Admin/MediaUploader.razor.rz.scp.css */
.media-uploader[b-h51zlhxkkv] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

    /* Hide the InputFile visually but keep clickable */
    .media-uploader .hidden-input[b-h51zlhxkkv] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

/* Styled button */
.media-uploader-label[b-h51zlhxkkv] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    background-color: var(--brand-primary, #4f46e5);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative; /* important for absolute input */
}

    .media-uploader-label:hover[b-h51zlhxkkv] {
        background-color: #4338ca;
    }

/* Uploading indicator */
.media-uploader .uploading[b-h51zlhxkkv] {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}
/* /Components/Admin/Pages/Settings/Settings.razor.rz.scp.css */
/* Layout */
.settings-layout[b-114qlj5dzn] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.settings-column[b-114qlj5dzn] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Panels */
.settings-panel[b-114qlj5dzn] {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    background: var(--surface-color);
}

.settings-panel-large[b-114qlj5dzn] {
    padding: 2rem;
}

.settings-title[b-114qlj5dzn] {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

/* Table */
.settings-table[b-114qlj5dzn] {
    width: 100%;
    border-collapse: collapse;
}

    .settings-table th[b-114qlj5dzn] {
        text-align: left;
        font-weight: 600;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid var(--border-color);
    }

    .settings-table td[b-114qlj5dzn] {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

/* Actions */
.settings-actions[b-114qlj5dzn] {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .settings-layout[b-114qlj5dzn] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Admin/Pages/Website/MediaManagement.razor.rz.scp.css */
/* =========================================
   Media Library
========================================= */

/* Card Grid */
.card-grid[b-1q69bepb22] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* Cards */
.card[b-1q69bepb22] {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-surface, #1e1e2f);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .card:hover[b-1q69bepb22] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

/* Media container */
.card-media[b-1q69bepb22] {
    width: 100%;
    aspect-ratio: 16 / 9; /* consistent image ratio */
    overflow: hidden;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .card-media img[b-1q69bepb22] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Card Body */
.card-body[b-1q69bepb22] {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    /* Meta info (file size) */
    .card-body .meta[b-1q69bepb22] {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.6);
    }

/* Buttons */
.button[b-1q69bepb22] {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.button-danger[b-1q69bepb22] {
    background-color: #e53e3e;
    color: white;
}

    .button-danger:hover[b-1q69bepb22] {
        background-color: #c53030;
    }

/* Responsive tweaks */
@media (max-width: 640px) {
    .card-grid[b-1q69bepb22] {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}
/* /Components/Admin/Pages/Website/PageEditor.razor.rz.scp.css */
.section-card .section-preview .mini-preview[b-d65evpcr0b] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.section-card .section-preview .section-preview-html[b-d65evpcr0b] {
    max-height: 150px;
    overflow-y: auto;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.section-card .section-preview .section-preview-images[b-d65evpcr0b] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

    .section-card .section-preview .section-preview-images img[b-d65evpcr0b] {
        width: 100%;
        height: 80px;
        object-fit: cover;
        border-radius: 0.25rem;
    }

.section-card .section-preview .section-preview-meta[b-d65evpcr0b] {
    font-size: 0.85rem;
}

.section-card .section-preview .section-preview-empty[b-d65evpcr0b] {
    font-style: italic;
}
/* /Components/Admin/Pages/Website/PageManagement.razor.rz.scp.css */
/* /Components/Admin/Pages/Website/WebsiteManagementLayout.razor.rz.scp.css */
.admin-layout[b-jrxprs04d8] {
    display: grid;
    grid-template-columns: 260px 1fr;
    height: 100vh;
    overflow: hidden;
}

/* Sidebar */
.admin-sidebar[b-jrxprs04d8] {
    padding: 1.5rem;
    border-right: 1px solid var(--border-color);
}

/* Navigation */
.admin-nav[b-jrxprs04d8] {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.admin-nav-link[b-jrxprs04d8] {
    padding: .6rem .75rem;
    border-radius: var(--radius-sm);
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
}

    .admin-nav-link:hover[b-jrxprs04d8] {
        background: var(--surface-hover);
    }

    .admin-nav-link.active[b-jrxprs04d8] {
        background: var(--surface-active);
        font-weight: 600;
    }

/* Content scroll area */
.admin-content[b-jrxprs04d8] {
    overflow-y: auto;
    padding: 2rem;
}
/* /Components/Layout/Admin/AdminLayout.razor.rz.scp.css */

.admin-header[b-v69wsgfl3e] {
    height: 60px;
}

/* Admin nav link */

[b-v69wsgfl3e] .admin-link {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    color: rgba(255,255,255,0.75);
}

    [b-v69wsgfl3e] .admin-link:hover {
        color: white;
    }

    [b-v69wsgfl3e] .admin-link.active {
        color: white;
    }

        [b-v69wsgfl3e] .admin-link.active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 100%;
            height: 2px;
            background: white;
        }
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-wbh1n178bk] {
    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-wbh1n178bk] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-xd7u76icsz],
.components-reconnect-repeated-attempt-visible[b-xd7u76icsz],
.components-reconnect-failed-visible[b-xd7u76icsz],
.components-pause-visible[b-xd7u76icsz],
.components-resume-failed-visible[b-xd7u76icsz],
.components-rejoining-animation[b-xd7u76icsz] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-xd7u76icsz {
    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/Website/WebsiteLayout.razor.rz.scp.css */
/* /Components/Layout/Website/WebsiteNavbar.razor.rz.scp.css */
/* /Components/Shared/InputTime.razor.rz.scp.css */
/* =========================================================
   Time Input Component Scoped CSS
========================================================= */

.time-ampm[b-1m0y4gzmpn] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

    .time-ampm select.form-input[b-1m0y4gzmpn] {
        padding: 0.4rem 0.6rem;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 0.25rem;
        background-color: #fff;
        color: #333;
        appearance: none; /* remove default dropdown styling */
    }

    .time-ampm span[b-1m0y4gzmpn] {
        font-weight: bold;
        font-size: 1rem;
    }

    /* Separate width control for each select */
    .time-ampm .time-hour[b-1m0y4gzmpn],
    .time-ampm .time-minute[b-1m0y4gzmpn] {
        width: 4rem; /* enough for 2 digits comfortably */
        text-align: center;
    }

    .time-ampm .time-ampm-select[b-1m0y4gzmpn] {
        width: 5rem; /* AM/PM */
        text-align: center;
    }

/* Mobile responsiveness */
@media (max-width: 480px) {
    .time-ampm[b-1m0y4gzmpn] {
        justify-content: flex-start;
        gap: 0.3rem;
    }

        .time-ampm select.form-input[b-1m0y4gzmpn] {
            font-size: 0.9rem;
            padding: 0.3rem 0.4rem;
        }

        .time-ampm .time-hour[b-1m0y4gzmpn],
        .time-ampm .time-minute[b-1m0y4gzmpn],
        .time-ampm .time-ampm-select[b-1m0y4gzmpn] {
            width: 3.5rem;
        }
}
/* /Components/Shared/Modal.razor.rz.scp.css */
