/* /CommonComponents/ConfirmDeleteModal.razor.rz.scp.css */
.modal-backdrop[b-2aad94o8ek] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1000;
}

.modal-container[b-2aad94o8ek] {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1001;
}

.modal-card[b-2aad94o8ek] {
    width: 100%;
    max-width: 380px;
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem 1.5rem 1.25rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.45);
}

.modal-title[b-2aad94o8ek] {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
}

.modal-text[b-2aad94o8ek] {
    margin: 0 0 1.25rem;
    font-size: 0.9rem;
    color: #4b5563;
}

.modal-buttons[b-2aad94o8ek] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.btn-cancel[b-2aad94o8ek],
.btn-danger[b-2aad94o8ek] {
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.btn-cancel[b-2aad94o8ek] {
    background: #e5e7eb;
    color: #374151;
}

    .btn-cancel:hover[b-2aad94o8ek] {
        background: #d1d5db;
    }

.btn-danger[b-2aad94o8ek] {
    background: #ef4444;
    color: #f9fafb;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.35);
}

    .btn-danger:hover[b-2aad94o8ek] {
        background: #dc2626;
    }

    .btn-danger:active[b-2aad94o8ek],
    .btn-cancel:active[b-2aad94o8ek] {
        transform: translateY(1px);
    }

/* Visible state */
.modal-backdrop.show[b-2aad94o8ek],
.modal-container.show[b-2aad94o8ek] {
    opacity: 1;
    pointer-events: auto;
}
/* /CommonComponents/CopyButton.razor.rz.scp.css */
.CopyToClipboard[b-3hw4v1glc6]  .Svg {
    width: 100%;
    min-width: 16px;
}

.Copying1[b-3hw4v1glc6] {
    display: block;
    transition: ease-in-out .5s;
    transform: rotateY(180deg) rotateX(180deg);
}

.Copying2[b-3hw4v1glc6] {
    display: block;
    transition: ease-in-out .5s;
    transform: rotateX(180deg) rotateY(180deg);
}
/* /CommonComponents/Error.razor.rz.scp.css */
/* Container */
.Wrapper[b-gz5bhojnr1] {
    background: #b00020; /* Material Design error red */
    color: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    animation: fadeIn-b-gz5bhojnr1 0.25s ease-out;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

/* Icon + text layout */
.IconText[b-gz5bhojnr1] {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

/* Icon */
.IconContainer[b-gz5bhojnr1] {
    width: 36px;
    min-width: 36px;
    opacity: 0.9;
}

/* Text */
.Wrapper p[b-gz5bhojnr1] {
    margin: 0 0 6px 0;
    line-height: 1.4;
    word-break: break-word;
}

/* Buttons */
.ButtonsBar[b-gz5bhojnr1] {
    text-align: right;
    margin-top: 12px;
}

    .ButtonsBar a[b-gz5bhojnr1] {
        padding: 8px 14px;
        border-radius: 6px;
        text-decoration: none;
        color: #fff;
        background: rgba(255,255,255,0.15);
        border: 1px solid rgba(255,255,255,0.25);
        transition: background 0.15s ease, border 0.15s ease;
    }

        .ButtonsBar a:hover[b-gz5bhojnr1] {
            background: rgba(255,255,255,0.25);
            border-color: rgba(255,255,255,0.35);
        }

/* Toggle links */
.SeeMore[b-gz5bhojnr1],
.SeeLess[b-gz5bhojnr1] {
    color: #ffe9e9;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
}

    .SeeMore:hover[b-gz5bhojnr1],
    .SeeLess:hover[b-gz5bhojnr1] {
        color: #ffffff;
    }

/* Hidden blocks */
.Hidden[b-gz5bhojnr1] {
    display: none;
}

/* Smooth fade-in animation */
@keyframes fadeIn-b-gz5bhojnr1 {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /CommonComponents/PageOptions.razor.rz.scp.css */
/*issues found?*/

.Wrapper[b-ojmg66z8gv] {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /*gap:10px;*/
}

    .Wrapper[b-ojmg66z8gv]  > * {
        padding: 0 10px;
        white-space: nowrap;
    }

        .Wrapper[b-ojmg66z8gv]  > *:hover {
            background-color: #f0f0f0;
        }


        .Wrapper[b-ojmg66z8gv]  > *:first-child {
            padding: 0 10px 0 0;
            text-align: left;
        }

        .Wrapper[b-ojmg66z8gv]  > *:not(:first-child) {
            border-left: 1px solid black;
        }
/* /CommonComponents/SearchBox.razor.rz.scp.css */
/*xx*/

.Wrapper[b-1l5bfbxodi] {
    position: relative;
}

input[b-1l5bfbxodi] {
    padding: 3px 0 2px 30px;
    width: 100%;
    border-color: #DDDDDD;
    -webkit-appearance: none;
    border-radius: 4px;
}

.Lupa[b-1l5bfbxodi] {
    position: absolute;
    width: 1rem;
    left: 5px;
    top: 4px;
}

.ClearButton[b-1l5bfbxodi] {
    position: absolute;
    right: 5px;
    top: 4px;
    z-index: 2;
}
/* /Components/AlbumEditor.razor.rz.scp.css */
/* ------------------------------
   PAGE WRAPPER
--------------------------------*/

.PageWrapper600[b-tou8901qv8] {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

    /* Title */
    .PageWrapper600 h3[b-tou8901qv8] {
        margin-bottom: 20px;
        font-size: 1.4rem;
        font-weight: 600;
        color: #222;
    }

/* ------------------------------
   FORM ELEMENTS
--------------------------------*/

.mb-3[b-tou8901qv8] {
    margin-bottom: 16px;
}

.form-label[b-tou8901qv8] {
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

.form-control[b-tou8901qv8] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #d0d0d0;
    font-size: 0.95rem;
    background: #fafafa;
    transition: border-color 0.2s ease, background 0.2s ease;
}

    .form-control:focus[b-tou8901qv8] {
        outline: none;
        border-color: #1a4fdc;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(26, 79, 220, 0.15);
    }

/* Validation summary */
.validation-errors[b-tou8901qv8],
.validation-message[b-tou8901qv8] {
    color: #b00020;
    font-size: 0.9rem;
    margin-top: 4px;
}

/* ------------------------------
   BUTTON BAR
--------------------------------*/

.ButtonsBar[b-tou8901qv8] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

    .ButtonsBar .btn[b-tou8901qv8] {
        min-width: 90px;
    }

    /* Loading spinner alignment */
    .ButtonsBar Loading[b-tou8901qv8] {
        display: flex;
        align-items: center;
    }

/* ------------------------------
   RESPONSIVE
--------------------------------*/

@media (max-width: 480px) {
    .PageWrapper600[b-tou8901qv8] {
        padding: 16px 12px;
        border-radius: 8px;
    }

    .ButtonsBar[b-tou8901qv8] {
        flex-direction: column-reverse;
        align-items: stretch;
    }

        .ButtonsBar .btn[b-tou8901qv8] {
            width: 100%;
        }
}
/* /Components/AlbumItemEditor.razor.rz.scp.css */
/* ------------------------------
   PAGE WRAPPER
--------------------------------*/

.PageWrapper600[b-jde7h41594] {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

    /* Title */
    .PageWrapper600 h3[b-jde7h41594] {
        margin-bottom: 20px;
        font-size: 1.4rem;
        font-weight: 600;
        color: #222;
    }

/* ------------------------------
   FORM ELEMENTS
--------------------------------*/

.mb-3[b-jde7h41594] {
    margin-bottom: 16px;
}

.form-label[b-jde7h41594] {
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

.form-control[b-jde7h41594] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #d0d0d0;
    font-size: 0.95rem;
    background: #fafafa;
    transition: border-color 0.2s ease, background 0.2s ease;
}

    .form-control:focus[b-jde7h41594] {
        outline: none;
        border-color: #1a4fdc;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(26, 79, 220, 0.15);
    }

/* Validation summary */
.validation-errors[b-jde7h41594],
.validation-message[b-jde7h41594] {
    color: #b00020;
    font-size: 0.9rem;
    margin-top: 4px;
}

.preview-img[b-jde7h41594] {
    width:100%;
    height:auto;
}

/* ------------------------------
   BUTTON BAR
--------------------------------*/
.ButtonsBar[b-jde7h41594] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

    .ButtonsBar .btn[b-jde7h41594] {
        min-width: 90px;
    }

    /* Loading spinner alignment */
    .ButtonsBar Loading[b-jde7h41594] {
        display: flex;
        align-items: center;
    }

/* ------------------------------
   RESPONSIVE
--------------------------------*/

@media (max-width: 480px) {
    .PageWrapper600[b-jde7h41594] {
        padding: 16px 12px;
        border-radius: 8px;
    }

    .ButtonsBar[b-jde7h41594] {
        flex-direction: column-reverse;
        align-items: stretch;
    }

        .ButtonsBar .btn[b-jde7h41594] {
            width: 100%;
        }
}
/* /Components/Albums.razor.rz.scp.css */
/* ------------------------------
   PAGE WRAPPER
--------------------------------*/

.PageWrapper600[b-f69z173lls] {
    display:flex;
    flex-direction:column;
    gap:15px;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 16px;
}

/* ------------------------------
   PAGE OPTIONS BAR
--------------------------------*/

PageOptions[b-f69z173lls] {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

    PageOptions a[b-f69z173lls] {
        padding: 6px 12px;
        background: #f0f2f7;
        border-radius: 8px;
        text-decoration: none;
        color: #333;
        font-size: 0.9rem;
        transition: background 0.2s ease;
    }

        PageOptions a:hover[b-f69z173lls] {
            background: #e2e6f0;
        }

/* Selected year / album badges */
.SelectedYear[b-f69z173lls],
.SelectedAlbum[b-f69z173lls] {
    display: inline-block;
    /*padding: 6px 12px;
    background: #e8f0ff;*/
    color: #1a4fdc;
    border-radius: 8px;
    font-weight: 600;
   /* margin-bottom: 16px;*/
    text-decoration: none;
}

/* ------------------------------
   YEAR GRID
--------------------------------*/

.Year-grid[b-f69z173lls] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.Year[b-f69z173lls] {
    display: block;
    padding: 14px 0;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .Year:hover[b-f69z173lls] {
        background: #e8f0ff;
        border-color: #1a4fdc;
        color: #1a4fdc;
    }

/* ------------------------------
   ALBUM LIST
--------------------------------*/

.Albums[b-f69z173lls] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.Album[b-f69z173lls] {
    display: grid;
    grid-template-columns: 100px, 1fr, 100px;
    padding: 14px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

    .Album:hover[b-f69z173lls] {
        background: #e8f0ff;
        border-color: #1a4fdc;
        color: #1a4fdc;
    }

/* ------------------------------
   GALLERY GRID
--------------------------------*/

.Galeria[b-f69z173lls] {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

    .Galeria .item[b-f69z173lls] {
    position: relative;
        display: block;
        border-radius: 8px;
        overflow: hidden;
        background: #f5f5f5;
    }

.drag-handle[b-f69z173lls] {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    cursor: grab;
    z-index: 5;
}

    .drag-handle:active[b-f69z173lls] {
        cursor: grabbing;
    }

    .Galeria img[b-f69z173lls] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* ------------------------------
   UPLOAD PROGRESS
--------------------------------*/

.ProgressGrid[b-f69z173lls] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.FileProgress[b-f69z173lls] {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.progress[b-f69z173lls] {
    width: 100%;
    height: 10px;
    background: #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 6px;
}

.progress-bar[b-f69z173lls] {
    height: 100%;
    background: #1a4fdc;
    color: #fff;
    font-size: 0.75rem;
    text-align: center;
    line-height: 10px;
    transition: width 0.2s ease;
}

/* ------------------------------
   EMPTY STATES
--------------------------------*/

p[b-f69z173lls] {
    font-size: 0.95rem;
    color: #555;
}

    p a[b-f69z173lls] {
        color: #1a4fdc;
        text-decoration: none;
        font-weight: 500;
    }


/*.context-menu {
    position: fixed;
    background: white;
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
}
*/

.menu-item[b-f69z173lls] {
    display: block;
    width: 100%;
    padding: 6px 12px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}

    .menu-item:hover[b-f69z173lls] {
        background: #eee;
    }


.drag-ghost[b-f69z173lls] {
    opacity: 0.4;
}




/* ------------------------------
   RESPONSIVE
--------------------------------*/

@media (max-width: 480px) {
    .PageWrapper600[b-f69z173lls] {
        padding: 16px 12px;
    }

    .Year-grid[b-f69z173lls] {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    }

    .Albums[b-f69z173lls] {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .Galeria[b-f69z173lls] {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}
/* /Components/ImageGallery.razor.rz.scp.css */
.gallery-grid[b-nhi3ftzas2] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.gallery-item[b-nhi3ftzas2] {
    position: relative;
    aspect-ratio: 1;
}
/* /Components/ModeToggler.razor.rz.scp.css */
.wrapper[b-hfxpwmwu5t] {
    display:flex;
    gap:10px;
    padding: 15px 0;
}
/* /Components/Thumbnail.razor.rz.scp.css */
.thumb[b-rosxxjv7mv] {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
}

/* Image always fills square */
.thumb-img[b-rosxxjv7mv] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play overlay */
.thumb-play[b-rosxxjv7mv] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 3;
}

    .thumb-play i[b-rosxxjv7mv] {
        font-size: 2.8rem;
        color: white;
        opacity: 0.9;
        text-shadow: 0 4px 12px rgba(0,0,0,0.35);
        /*background: rgba(255,0,0,0.3);*/
    }

/* iOS-style selection check */
.thumb-check[b-rosxxjv7mv] {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 4;
}

    .thumb-check i[b-rosxxjv7mv] {
        font-size: 1.6rem;
        color: #3b82f6;
    }

/* Title bar */
.thumb-title[b-rosxxjv7mv] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.35rem 0.5rem;
    font-size: 0.75rem;
    background: rgba(255,255,255,0.92);
    border-top: 1px solid #e5e7eb;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 2;
}

.thumb-duration[b-rosxxjv7mv] {
    position: absolute;
    bottom: 6px;
    right: 6px;
    padding: 2px 6px;
    font-size: 0.70rem;
    font-weight: 600;
    color: white;
    background: rgba(0,0,0,0.55);
    border-radius: 4px;
    z-index: 6;
    pointer-events: none;
    line-height: 1;
    letter-spacing: 0.5px;
}
/* /Components/UploadProgressGrid.razor.rz.scp.css */
/* ---------------------------------------------------------
   Responsive Grid Layout
--------------------------------------------------------- */

.upload-grid[b-wnblkvo0pw] {
    display: grid;
    gap: 1.25rem;
    padding: .75rem;
    max-width: 1200px;
    margin: auto;
    grid-template-columns: 1fr; /* Mobile */
}

/* Tablet: 2 columns */
@media (min-width: 700px) {
    .upload-grid[b-wnblkvo0pw] {
        grid-template-columns: 1fr 1fr;
    }
}

/* Desktop: 3 columns */
@media (min-width: 1100px) {
    .upload-grid[b-wnblkvo0pw] {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Summary card always spans full width */
.upload-summary[b-wnblkvo0pw] {
    grid-column: 1 / -1;
}

/* ---------------------------------------------------------
   Card Styling
--------------------------------------------------------- */

.card[b-wnblkvo0pw] {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.15rem 1.35rem;
    box-shadow: 0 3px 10px rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.05);
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

/* ---------------------------------------------------------
   Typography
--------------------------------------------------------- */

.summary-header[b-wnblkvo0pw],
.item-header[b-wnblkvo0pw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-header[b-wnblkvo0pw] {
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .2px;
}

    .summary-header span:first-child[b-wnblkvo0pw] {
        margin-right: .75rem;
    }

.item-title[b-wnblkvo0pw] {
    font-weight: 600;
    font-size: .95rem;
    color: #333;
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---------------------------------------------------------
   Action Buttons
--------------------------------------------------------- */

.item-actions[b-wnblkvo0pw] {
    display: flex;
    gap: .6rem;
}

.icon-btn[b-wnblkvo0pw] {
    background: transparent;
    border: none;
    font-size: 1.15rem;
    cursor: pointer;
    color: #666;
    transition: color .15s ease;
}

    .icon-btn:hover[b-wnblkvo0pw] {
        color: #000;
    }

    .icon-btn.danger[b-wnblkvo0pw] {
        color: #d9534f;
    }

        .icon-btn.danger:hover[b-wnblkvo0pw] {
            color: #b52b27;
        }

/* ---------------------------------------------------------
   Progress Bar
--------------------------------------------------------- */

.progress[b-wnblkvo0pw] {
    background: #f1f3f5;
    border-radius: 6px;
    height: 8px;
    overflow: hidden;
    position: relative;
}

.progress-bar[b-wnblkvo0pw] {
    background: linear-gradient(90deg, #4e9af1, #1c6cd5);
    height: 100%;
    border-radius: 6px;
    transition: width .35s ease-out;
}

    /* Optional subtle shine animation */
    .progress-bar.animated[b-wnblkvo0pw]::after {
        content: "";
        position: absolute;
        top: 0;
        left: -40%;
        width: 40%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
        animation: shine-b-wnblkvo0pw 1.8s infinite;
    }

@keyframes shine-b-wnblkvo0pw {
    0% {
        left: -40%;
    }

    100% {
        left: 100%;
    }
}

/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */

.item-footer[b-wnblkvo0pw] {
    display: grid;
    grid-template-columns: 3rem 1fr 3.5rem;
    font-size: .8rem;
    color: #666;
    margin-top: .35rem;
}


/* ---------------------------------------------------------
   Fade-in Animation
--------------------------------------------------------- */

.fade-in[b-wnblkvo0pw] {
    animation: fadeIn-b-wnblkvo0pw .25s ease-out;
}

@keyframes fadeIn-b-wnblkvo0pw {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/UserEditor.razor.rz.scp.css */
/* Container */
.edit-form-container[b-3qsfvwnygr] {
    max-width: 480px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    animation: fadeIn-b-3qsfvwnygr 0.25s ease-out;
}

    /* Labels */
    .edit-form-container label[b-3qsfvwnygr] {
        font-weight: 600;
        margin-bottom: 0.35rem;
        display: block;
        color: #333;
    }

    /* Inputs */
    .edit-form-container .form-control[b-3qsfvwnygr] {
        border-radius: 10px;
        border: 1px solid #d0d0d0;
        padding: 0.65rem 0.9rem;
        font-size: 0.95rem;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        .edit-form-container .form-control:focus[b-3qsfvwnygr] {
            border-color: #4a8cff;
            box-shadow: 0 0 0 3px rgba(74, 140, 255, 0.25);
        }

    /* Button */
    .edit-form-container .btn-primary[b-3qsfvwnygr] {
        width: 100%;
        padding: 0.75rem;
        font-weight: 600;
        border-radius: 10px;
        background: linear-gradient(135deg, #4a8cff, #6a6cff);
        border: none;
        transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

        .edit-form-container .btn-primary:hover[b-3qsfvwnygr] {
            transform: translateY(-2px);
            box-shadow: 0 6px 14px rgba(74, 140, 255, 0.35);
        }

    .edit-form-container small[b-3qsfvwnygr] {
        color: #777;
    }

/* Validation summary */
.validation-summary-errors[b-3qsfvwnygr] {
    background: #ffe6e6;
    border-left: 4px solid #ff4d4d;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    color: #a30000;
    font-size: 0.9rem;
}

/* Fade-in animation */
@keyframes fadeIn-b-3qsfvwnygr {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* ------------------------------
   MOBILE-FIRST BASE LAYOUT
--------------------------------*/

.app-shell[b-duse5ztj76] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f5f6fa;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Header */
.app-header[b-duse5ztj76] {
    height: 56px;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.LogoTitle[b-duse5ztj76] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.app-title[b-duse5ztj76] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
}

.nav-toggle[b-duse5ztj76] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Body */
.app-body[b-duse5ztj76] {
    flex: 1;
    position: relative;
}

/* ------------------------------
   NAVIGATION (MOBILE FIRST)
--------------------------------*/

.app-nav[b-duse5ztj76] {
    position: fixed;
    top: 56px;
    left: 0;
    bottom: 0;
    width: 240px;
    background: #fff;
    border-right: 1px solid #e0e0e0;
    padding: 16px 12px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 20;
}

.app-nav-open[b-duse5ztj76] {
    transform: translateX(0);
}

.nav-list[b-duse5ztj76] {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .nav-list li + li[b-duse5ztj76] {
        margin-top: 8px;
    }

    .nav-list a[b-duse5ztj76] {
        display: block;
        padding: 8px 10px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 0.95rem;
        color: #333;
    }

        .nav-list a.active[b-duse5ztj76] {
            background: #e8f0ff;
            color: #1a4fdc;
        }

/* Backdrop */
.app-nav-backdrop[b-duse5ztj76] {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.35);
    z-index: 10;
}

/* ------------------------------
   MAIN CONTENT
--------------------------------*/

.app-main[b-duse5ztj76] {
    padding: 16px;
    margin-top: 56px; /* header */
    margin-bottom: 60px; /* footer */
    min-width: 0;
}

/* Footer */
.app-footer[b-duse5ztj76] {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    font-size: 0.85rem;
    color: #666;
}

/* ------------------------------
   DESKTOP LAYOUT
--------------------------------*/

@media (min-width: 768px) {

    .app-body[b-duse5ztj76] {
        display: grid;
        grid-template-columns: 240px 1fr;
    }

    .app-nav[b-duse5ztj76] {
        position: relative;
        transform: translateX(0);
        top: 0;
        bottom: 0;
        height: auto;
        z-index: 1;
    }

    .app-nav-backdrop[b-duse5ztj76] {
        display: none;
    }

    .app-main[b-duse5ztj76] {
        margin-top: 0;
        margin-bottom: 0;
        padding: 20px;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.welcome[b-hijctl93os] {
    padding-left:15px;
}
/* /Pages/LoginPage.razor.rz.scp.css */
/* ------------------------------
   LOGIN FORM WRAPPER
--------------------------------*/

.login-form[b-a30ovbk1m4] {
    max-width: 420px;
    margin: 60px auto;
    padding: 28px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* ------------------------------
   FORM GROUPS
--------------------------------*/


.form-group[b-a30ovbk1m4] {
    margin-bottom: 18px;
    width: 100%;
    flex: 1 1 100%; /*If you ever wrap .form-group in a flex container, make sure it doesn’t shrink*/
}

    .form-group label[b-a30ovbk1m4] {
        display: block;
        margin-bottom: 6px;
        font-size: 0.95rem;
        font-weight: 500;
        color: white;
    }

/* ------------------------------
   INPUTS
--------------------------------*/


.login-form input[b-a30ovbk1m4] {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #d0d0d0;
    background: #fafafa;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, background 0.2s ease;

    border: 2px solid red;
}

.login-form .input2[b-a30ovbk1m4] {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box; /* Ensures padding doesn't overflow */
}



    .login-form .input2:focus[b-a30ovbk1m4] {
        outline: none;
        border-color: #1a4fdc;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(26, 79, 220, 0.15);
    }

/* Validation messages */
.validation-message[b-a30ovbk1m4] {
    color: #b00020;
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ------------------------------
   LOGIN BUTTON
--------------------------------*/

.btn-primary[b-a30ovbk1m4] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #1a4fdc;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.2s ease;
}

    .btn-primary:hover[b-a30ovbk1m4] {
        background: #153eb0;
    }

    .btn-primary:disabled[b-a30ovbk1m4] {
        opacity: 0.7;
        cursor: default;
    }

    /* Loading spinner alignment */
    .btn-primary Loading[b-a30ovbk1m4] {
        display: flex;
        align-items: center;
    }

/* ------------------------------
   RESPONSIVE
--------------------------------*/

@media (max-width: 480px) {
    .login-form[b-a30ovbk1m4] {
        margin: 40px 12px;
        padding: 22px 18px;
        border-radius: 10px;
    }
}
/* /Pages/UsersPage.razor.rz.scp.css */
/* -----------------------------------------
   PAGE WRAPPER
----------------------------------------- */

.PageWrapper600[b-ojhnzjnv26] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 16px;
}

/* -----------------------------------------
   TITLE
----------------------------------------- */

h3[b-ojhnzjnv26] {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
}

/* -----------------------------------------
   USERS GRID
----------------------------------------- */

.UsersGrid[b-ojhnzjnv26] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 10px;
}

/* -----------------------------------------
   USER ROW (card-style button)
----------------------------------------- */

.UserRow[b-ojhnzjnv26] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #333;
    text-align: left;
    cursor: pointer;
    transition: all 0.18s ease;
}

    .UserRow:hover[b-ojhnzjnv26] {
        background: #f4f7ff;
        border-color: #1a4fdc;
        color: #1a4fdc;
        box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    }

/* -----------------------------------------
   EMPTY STATE
----------------------------------------- */

p[b-ojhnzjnv26] {
    font-size: 0.95rem;
    color: #555;
}

/* -----------------------------------------
   RESPONSIVE
----------------------------------------- */

@media (max-width: 480px) {
    .UsersGrid[b-ojhnzjnv26] {
        grid-template-columns: 1fr;
    }

    .UserRow[b-ojhnzjnv26] {
        padding: 12px 14px;
    }
}
