/* /Controls/Toast.razor.rz.scp.css */
.toast[b-lchp9dxmkr] {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    padding: 0.5rem;
    background: var(--neon-cyan);
    color: #000;
    border-radius: 50%;
    opacity: 0;
    z-index: 1000;
    overflow: hidden;
    animation: toastEntrance-b-lchp9dxmkr 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
    .toast:not(.show)[b-lchp9dxmkr] {
        display: unset;
    }
    .toast.exiting[b-lchp9dxmkr] {
        animation: toastExit-b-lchp9dxmkr 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    }

.toast-content[b-lchp9dxmkr] {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toast-heading[b-lchp9dxmkr] {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.toast-message[b-lchp9dxmkr] {
    margin: 2px 0;
    font-size: 14px;
}

.toast-close[b-lchp9dxmkr] {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    top: 2px;
    right: 1px;
}

.toast-progress[b-lchp9dxmkr] {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(0,0,0,0.3);
    width: 100%;
    transform-origin: left;
    animation: progressBar-b-lchp9dxmkr 5s linear forwards;
}


/* Reveal content once fully expanded */
.toast.expanded .toast-content[b-lchp9dxmkr] {
    opacity: 1;
}

/* Entrance Animation: circle expands to a rectangle */
@keyframes toastEntrance-b-lchp9dxmkr {
    0% {
        transform: translateX(-50%) translateY(-100%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        opacity: 0;
    }

    40% {
        transform: translateX(-50%) translateY(20px);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(20px);
        width: 300px;
        height: max-content;
        border-radius: 0.5rem;
        opacity: 1;
    }
}

@keyframes toastExit-b-lchp9dxmkr {
    0% {
        transform: translateX(-50%) translateY(20px);
        width: 300px;
        border-radius: 0.5rem;
        opacity: 1;
    }

    40% {
        transform: translateX(-50%) translateY(20px);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
}

/* Progress bar animation */
@keyframes progressBar-b-lchp9dxmkr {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

/* Success Variation with Glow */
.toast-success[b-lchp9dxmkr] {
    background: var(--neon-cyan, #00f7ff);
    color: #000;
    box-shadow: 0 0 12px var(--neon-cyan, #00f7ff);
}

    .toast-success .toast-progress[b-lchp9dxmkr] {
        background: linear-gradient(to right, var(--neon-cyan, #00f7ff), #00d1e0);
    }

/* Danger Variation with Glow */
.toast-danger[b-lchp9dxmkr] {
    background: #ef4444; /* red-500 */
    color: #fff;
    box-shadow: 0 0 12px #ef4444;
}

    .toast-danger .toast-progress[b-lchp9dxmkr] {
        background: linear-gradient(to right, #ef4444, #f87171);
    }

/* Info Variation with Glow */
.toast-info[b-lchp9dxmkr] {
    background: #0ea5e9; /* bright blue */
    color: #fff;
    box-shadow: 0 0 12px #0ea5e9;
}

    .toast-info .toast-progress[b-lchp9dxmkr] {
        background: linear-gradient(to right, #0ea5e9, #38bdf8);
    }

/* Warning Variation with Glow */
.toast-warning[b-lchp9dxmkr] {
    background: #f59e0b; /* amber */
    color: #000;
    box-shadow: 0 0 12px #f59e0b;
}

    .toast-warning .toast-progress[b-lchp9dxmkr] {
        background: linear-gradient(to right, #f59e0b, #fbbf24);
    }
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-5dfjfc5gri] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-5dfjfc5gri] {
    flex: 1;
}

.sidebar[b-5dfjfc5gri] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-5dfjfc5gri] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-5dfjfc5gri]  a, .top-row[b-5dfjfc5gri]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-5dfjfc5gri]  a:hover, .top-row[b-5dfjfc5gri]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-5dfjfc5gri]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-5dfjfc5gri] {
        justify-content: space-between;
    }

    .top-row[b-5dfjfc5gri]  a, .top-row[b-5dfjfc5gri]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-5dfjfc5gri] {
        flex-direction: row;
    }

    .sidebar[b-5dfjfc5gri] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-5dfjfc5gri] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-5dfjfc5gri]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-5dfjfc5gri], article[b-5dfjfc5gri] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Pages/NotFound.razor.rz.scp.css */


/* button css start */
.cmn-btn[b-ymdln7uawr] {
    padding: 8px 20px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s;
    border: 1px solid #5b28ff;
    color: #5b28ff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    display: flex;
    max-width: fit-content;
    margin-inline: auto;
    align-items: center;
    gap: 10px;
}

    .cmn-btn .icon[b-ymdln7uawr] {
        display: inline-block;
    }

        .cmn-btn .icon svg[b-ymdln7uawr] {
            width: 20px;
            height: 20px;
            fill: #5b28ff;
            transition: all 0.3s;
        }

    .cmn-btn .text[b-ymdln7uawr] {
        margin-top: 3px;
    }

    .cmn-btn:hover[b-ymdln7uawr] {
        color: #ffffff;
        background-color: #5b28ff;
    }

        .cmn-btn:hover .icon svg[b-ymdln7uawr] {
            fill: #ffffff;
        }


/* button css end */
/* error-404 css start */
.error[b-ymdln7uawr] {
    padding: 20px 60px;
    height: 100vh;
    justify-content: center;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

    .error .title[b-ymdln7uawr] {
        font-size: 56px;
        font-weight: 600;
        margin-top: 70px;
        margin-bottom: 15px;
        color: #211742;
    }

    .error.error-419 .title[b-ymdln7uawr] {
        font-size: 45px;
    }

    .error .description[b-ymdln7uawr] {
        font-size: 18px;
        color: #211742;
    }

.error-500-thumb[b-ymdln7uawr] {
    position: relative;
}

.error-500-thumb-cat[b-ymdln7uawr] {
    position: absolute;
    bottom: 0;
    left: 60%;
    right: 40%;
    width: 103px;
    height: 103px;
}

@media screen and (max-width:480px) {

    .error-500-thumb-cat[b-ymdln7uawr] {
        width: 80px;
        height: 80px;
    }
}

@media screen and (max-width:375px) {
    .error-500-thumb-cat[b-ymdln7uawr] {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .error[b-ymdln7uawr] {
        padding-inline: 15px;
    }

        .error .title[b-ymdln7uawr],
        .error.error-419 .title[b-ymdln7uawr] {
            font-size: 32px;
            margin-top: 50px;
        }

        .error .description[b-ymdln7uawr] {
            font-size: 16px;
        }
}

@media (max-width: 425px) {
    .error[b-ymdln7uawr] {
        padding-inline: 10px;
    }

        .error .title[b-ymdln7uawr],
        .error.error-419 .title[b-ymdln7uawr] {
            font-size: 28px;
            margin-top: 30px;
        }

        .error .description[b-ymdln7uawr] {
            font-size: 15px;
        }
}

.error .title b[b-ymdln7uawr] {
    font-size: 72px;
    color: #f45570;
}

.error p[b-ymdln7uawr] {
    font-size: 18px;
}

/* Start Glow animation Start */
.star-glow[b-ymdln7uawr] {
    display: inline-block;
    position: absolute;
    background-size: cover !important;
}

    .star-glow.glow-1[b-ymdln7uawr] {
        width: 25px;
        height: 25px;
        left: 50%;
        right: 50%;
        top: 50%;
        animation: glow-b-ymdln7uawr 3s infinite;
    }

    .star-glow.glow-2[b-ymdln7uawr] {
        width: 20px;
        height: 20px;
        left: 40%;
        right: 60%;
        top: 40%;
        animation: glow-b-ymdln7uawr 4s infinite;
    }

    .star-glow.glow-3[b-ymdln7uawr] {
        width: 15px;
        height: 15px;
        left: 58%;
        right: 42%;
        top: 30%;
        animation: glow-b-ymdln7uawr 2s infinite;
    }

    .star-glow.glow-4[b-ymdln7uawr] {
        width: 25px;
        height: 25px;
        left: 47%;
        right: 53%;
        top: 16%;
        animation: glow-b-ymdln7uawr 5s infinite;
    }

@media (max-width: 768px) {

    .star-glow.glow-1[b-ymdln7uawr] {
        top: 45%;
        left: 60%;
    }
}

@keyframes glow-b-ymdln7uawr {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}
