@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.7t9tbfaemk.bundle.scp.css';

/* /Controls/Common/AccessDenied.razor.rz.scp.css */

.card[b-0cjzcaq0rj] {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 1px solid #e1e5e8;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}

.card-icon[b-0cjzcaq0rj] {
    margin-bottom: 24px;
}

    .card-icon img[b-0cjzcaq0rj] {
        width: 80px;
        height: 80px;
    }

.card-title[b-0cjzcaq0rj] {
    font-size: 28px;
    font-weight: 700;
    color: #d9534f; /* A soft red for warning */
    margin: 0 0 16px;
}

.card-message[b-0cjzcaq0rj] {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 32px;
    color: #6c757d;
}

.card-button[b-0cjzcaq0rj] {
    background-color: #6c757d;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .card-button:hover[b-0cjzcaq0rj] {
        background-color: #5a6268;
        transform: translateY(-2px);
    }
/* /Controls/Common/ImageViewer.razor.rz.scp.css */
.image-viewer[b-yxyfpayhp1] {
    display: inline-block;
    cursor: pointer;
}

.viewer-img[b-yxyfpayhp1] {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

    .viewer-img:hover[b-yxyfpayhp1] {
        transform: scale(1.05);
    }

/* Modal overlay */
.modal-backdrop[b-yxyfpayhp1] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Modal content */
.modal-content[b-yxyfpayhp1] {
    position: relative;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.modal-img[b-yxyfpayhp1] {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

/* Close button */
.close-btn[b-yxyfpayhp1] {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff4444;
    border: none;
    color: white;
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
}

    .close-btn:hover[b-yxyfpayhp1] {
        background: #e60000;
    }
/* /Controls/Common/Toast.razor.rz.scp.css */
.toast[b-09u682stn8] {
    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-09u682stn8 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

    .toast.exiting[b-09u682stn8] {
        animation: toastExit-b-09u682stn8 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    }

.toast-content[b-09u682stn8] {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toast-heading[b-09u682stn8] {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.toast-message[b-09u682stn8] {
    margin: 2px 0;
    font-size: 14px;
}

.toast-close[b-09u682stn8] {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    top: 2px;
    right: 1px;
}

.toast-progress[b-09u682stn8] {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(0,0,0,0.3);
    width: 100%;
    transform-origin: left;
    animation: progressBar-b-09u682stn8 5s linear forwards;
}


/* Reveal content once fully expanded */
.toast.expanded .toast-content[b-09u682stn8] {
    opacity: 1;
}

/* Entrance Animation: circle expands to a rectangle */
@keyframes toastEntrance-b-09u682stn8 {
    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-09u682stn8 {
    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-09u682stn8 {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

/* Success Variation with Glow */
.toast-success[b-09u682stn8] {
    background: var(--neon-cyan, #00f7ff);
    color: #000;
    box-shadow: 0 0 12px var(--neon-cyan, #00f7ff);
}

    .toast-success .toast-progress[b-09u682stn8] {
        background: linear-gradient(to right, var(--neon-cyan, #00f7ff), #00d1e0);
    }

/* Danger Variation with Glow */
.toast-danger[b-09u682stn8] {
    background: #ef4444; /* red-500 */
    color: #fff;
    box-shadow: 0 0 12px #ef4444;
}

    .toast-danger .toast-progress[b-09u682stn8] {
        background: linear-gradient(to right, #ef4444, #f87171);
    }

/* Info Variation with Glow */
.toast-info[b-09u682stn8] {
    background: #0ea5e9; /* bright blue */
    color: #fff;
    box-shadow: 0 0 12px #0ea5e9;
}

    .toast-info .toast-progress[b-09u682stn8] {
        background: linear-gradient(to right, #0ea5e9, #38bdf8);
    }

/* Warning Variation with Glow */
.toast-warning[b-09u682stn8] {
    background: #f59e0b; /* amber */
    color: #000;
    box-shadow: 0 0 12px #f59e0b;
}

    .toast-warning .toast-progress[b-09u682stn8] {
        background: linear-gradient(to right, #f59e0b, #fbbf24);
    }
/* /Controls/Transfer/TransferLoadingComponent.razor.rz.scp.css */
[x-cloak][b-hcjlr8esuk] {
    display: none !important;
}

.perspective-500[b-hcjlr8esuk] {
    perspective: 500px;
}

.rotate-y-10[b-hcjlr8esuk] {
    transform: rotateY(10deg);
}

.rotate-x-5[b-hcjlr8esuk] {
    transform: rotateX(5deg);
}

@keyframes card-float-b-hcjlr8esuk {
    0%, 100% {
        transform: translateY(0) rotateY(10deg) rotateX(5deg);
    }

    50% {
        transform: translateY(-10px) rotateY(15deg) rotateX(5deg);
    }
}

.animate-card-float[b-hcjlr8esuk] {
    animation: card-float-b-hcjlr8esuk 3s ease-in-out infinite;
}
