/* /Controls/ChatRelated/TypingIndicatorComponent.razor.rz.scp.css */
/* TypingIndicator.razor.css */
.typing-indicator-container[b-b9avlmrzuz] {
    display: flex;
    align-items: center;
    max-width: 220px;
    animation: float-b-b9avlmrzuz 3s ease-in-out infinite;
}

.typing-avatars[b-b9avlmrzuz] {
    display: flex;
    position: relative;
    margin-right: 10px;
}

.typing-avatar[b-b9avlmrzuz] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

    .typing-avatar img[b-b9avlmrzuz] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .typing-avatar:nth-child(1)[b-b9avlmrzuz] {
        z-index: 3;
    }

    .typing-avatar:nth-child(2)[b-b9avlmrzuz] {
        transform: translateX(-10px);
        z-index: 2;
    }

    .typing-avatar:nth-child(3)[b-b9avlmrzuz] {
        transform: translateX(-20px);
        z-index: 1;
    }

.more-users[b-b9avlmrzuz] {
    position: absolute;
    right: -5px;
    bottom: -5px;
    background: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: #666;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.typing-animation[b-b9avlmrzuz] {
    display: flex;
    flex-direction: column;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.05);
    border-top-left-radius: 0.25rem !important;
    padding: 7px 9px;
    border-radius: 1rem;
}

.typing-text[b-b9avlmrzuz] {
    font-size: 12px;
    color: #aaa;
    font-weight: 500;
}

.typing-dots[b-b9avlmrzuz] {
    display: flex;
    align-items: center;
    height: 20px;
}

.dot[b-b9avlmrzuz] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    margin: 0 2px;
    opacity: 0.6;
}

.dot-1[b-b9avlmrzuz] {
    animation: typing-pulse-b-b9avlmrzuz 1.2s infinite ease-in-out;
    animation-delay: 0s;
}

.dot-2[b-b9avlmrzuz] {
    animation: typing-pulse-b-b9avlmrzuz 1.2s infinite ease-in-out;
    animation-delay: 0.2s;
}

.dot-3[b-b9avlmrzuz] {
    animation: typing-pulse-b-b9avlmrzuz 1.2s infinite ease-in-out;
    animation-delay: 0.4s;
}

@keyframes typing-pulse-b-b9avlmrzuz {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-5px);
        opacity: 1;
        box-shadow: 0 3px 6px rgba(98, 0, 238, 0.2);
    }
}

@keyframes float-b-b9avlmrzuz {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}
/* /Controls/General/Toast.razor.rz.scp.css */
.toast[b-55fodvoijm] {
    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-55fodvoijm 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

    .toast.exiting[b-55fodvoijm] {
        animation: toastExit-b-55fodvoijm 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    }

.toast-content[b-55fodvoijm] {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toast-heading[b-55fodvoijm] {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.toast-message[b-55fodvoijm] {
    margin: 2px 0;
    font-size: 14px;
}

.toast-close[b-55fodvoijm] {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    top: 2px;
    right: 1px;
}

.toast-progress[b-55fodvoijm] {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(0,0,0,0.3);
    width: 100%;
    transform-origin: left;
    animation: progressBar-b-55fodvoijm 5s linear forwards;
}


/* Reveal content once fully expanded */
.toast.expanded .toast-content[b-55fodvoijm] {
    opacity: 1;
}

/* Entrance Animation: circle expands to a rectangle */
@keyframes toastEntrance-b-55fodvoijm {
    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-55fodvoijm {
    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-55fodvoijm {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

/* Success Variation with Glow */
.toast-success[b-55fodvoijm] {
    background: var(--neon-cyan, #00f7ff);
    color: #000;
    box-shadow: 0 0 12px var(--neon-cyan, #00f7ff);
}

    .toast-success .toast-progress[b-55fodvoijm] {
        background: linear-gradient(to right, var(--neon-cyan, #00f7ff), #00d1e0);
    }

/* Danger Variation with Glow */
.toast-danger[b-55fodvoijm] {
    background: #ef4444; /* red-500 */
    color: #fff;
    box-shadow: 0 0 12px #ef4444;
}

    .toast-danger .toast-progress[b-55fodvoijm] {
        background: linear-gradient(to right, #ef4444, #f87171);
    }

/* Info Variation with Glow */
.toast-info[b-55fodvoijm] {
    background: #0ea5e9; /* bright blue */
    color: #fff;
    box-shadow: 0 0 12px #0ea5e9;
}

    .toast-info .toast-progress[b-55fodvoijm] {
        background: linear-gradient(to right, #0ea5e9, #38bdf8);
    }

/* Warning Variation with Glow */
.toast-warning[b-55fodvoijm] {
    background: #f59e0b; /* amber */
    color: #000;
    box-shadow: 0 0 12px #f59e0b;
}

    .toast-warning .toast-progress[b-55fodvoijm] {
        background: linear-gradient(to right, #f59e0b, #fbbf24);
    }
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-6mnhtq7p0p] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-6mnhtq7p0p] {
    flex: 1;
}

.sidebar[b-6mnhtq7p0p] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-6mnhtq7p0p] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-6mnhtq7p0p]  a, .top-row[b-6mnhtq7p0p]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-6mnhtq7p0p]  a:hover, .top-row[b-6mnhtq7p0p]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-6mnhtq7p0p]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-6mnhtq7p0p] {
        justify-content: space-between;
    }

    .top-row[b-6mnhtq7p0p]  a, .top-row[b-6mnhtq7p0p]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-6mnhtq7p0p] {
        flex-direction: row;
    }

    .sidebar[b-6mnhtq7p0p] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-6mnhtq7p0p] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-6mnhtq7p0p]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-6mnhtq7p0p], article[b-6mnhtq7p0p] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
