/* /Controls/Common/AccessDenied.razor.rz.scp.css */

.card[b-fg4ws8j8pt] {
    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-fg4ws8j8pt] {
    margin-bottom: 24px;
}

    .card-icon img[b-fg4ws8j8pt] {
        width: 80px;
        height: 80px;
    }

.card-title[b-fg4ws8j8pt] {
    font-size: 28px;
    font-weight: 700;
    color: #d9534f; /* A soft red for warning */
    margin: 0 0 16px;
}

.card-message[b-fg4ws8j8pt] {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 32px;
    color: #6c757d;
}

.card-button[b-fg4ws8j8pt] {
    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-fg4ws8j8pt] {
        background-color: #5a6268;
        transform: translateY(-2px);
    }
/* /Controls/Common/Toast.razor.rz.scp.css */
.toast[b-xva7vxooku] {
    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-xva7vxooku 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

    .toast.exiting[b-xva7vxooku] {
        animation: toastExit-b-xva7vxooku 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    }

.toast-content[b-xva7vxooku] {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toast-heading[b-xva7vxooku] {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.toast-message[b-xva7vxooku] {
    margin: 2px 0;
    font-size: 14px;
}

.toast-close[b-xva7vxooku] {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    top: 2px;
    right: 1px;
}

.toast-progress[b-xva7vxooku] {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(0,0,0,0.3);
    width: 100%;
    transform-origin: left;
    animation: progressBar-b-xva7vxooku 5s linear forwards;
}


/* Reveal content once fully expanded */
.toast.expanded .toast-content[b-xva7vxooku] {
    opacity: 1;
}

/* Entrance Animation: circle expands to a rectangle */
@keyframes toastEntrance-b-xva7vxooku {
    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-xva7vxooku {
    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-xva7vxooku {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

/* Success Variation with Glow */
.toast-success[b-xva7vxooku] {
    background: var(--neon-cyan, #00f7ff);
    color: #000;
    box-shadow: 0 0 12px var(--neon-cyan, #00f7ff);
}

    .toast-success .toast-progress[b-xva7vxooku] {
        background: linear-gradient(to right, var(--neon-cyan, #00f7ff), #00d1e0);
    }

/* Danger Variation with Glow */
.toast-danger[b-xva7vxooku] {
    background: #ef4444; /* red-500 */
    color: #fff;
    box-shadow: 0 0 12px #ef4444;
}

    .toast-danger .toast-progress[b-xva7vxooku] {
        background: linear-gradient(to right, #ef4444, #f87171);
    }

/* Info Variation with Glow */
.toast-info[b-xva7vxooku] {
    background: #0ea5e9; /* bright blue */
    color: #fff;
    box-shadow: 0 0 12px #0ea5e9;
}

    .toast-info .toast-progress[b-xva7vxooku] {
        background: linear-gradient(to right, #0ea5e9, #38bdf8);
    }

/* Warning Variation with Glow */
.toast-warning[b-xva7vxooku] {
    background: #f59e0b; /* amber */
    color: #000;
    box-shadow: 0 0 12px #f59e0b;
}

    .toast-warning .toast-progress[b-xva7vxooku] {
        background: linear-gradient(to right, #f59e0b, #fbbf24);
    }
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-q9yheoto4d] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-q9yheoto4d] {
    flex: 1;
}

.sidebar[b-q9yheoto4d] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-q9yheoto4d] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-q9yheoto4d]  a, .top-row[b-q9yheoto4d]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-q9yheoto4d]  a:hover, .top-row[b-q9yheoto4d]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-q9yheoto4d]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-q9yheoto4d] {
        justify-content: space-between;
    }

    .top-row[b-q9yheoto4d]  a, .top-row[b-q9yheoto4d]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-q9yheoto4d] {
        flex-direction: row;
    }

    .sidebar[b-q9yheoto4d] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-q9yheoto4d] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-q9yheoto4d]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-q9yheoto4d], article[b-q9yheoto4d] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Pages/CelebrityInfo.razor.rz.scp.css */
/* News Outlet Section Styling */
.news-outlet-content[b-5c2byfr0rj] {
    font-family: 'Inter', sans-serif;
    color: #374151;
    /* gray-700 */
}

.dark .news-outlet-content[b-5c2byfr0rj] {
    color: #d1d5db;
    /* gray-300 */
}

/* Headers */
.news-outlet-content h4[b-5c2byfr0rj] {
    font-size: 1.125rem;
    /* text-lg */
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #111827;
    /* gray-900 */
}

.news-outlet-content h4:first-child[b-5c2byfr0rj] {
    margin-top: 0;
}

.dark .news-outlet-content h4[b-5c2byfr0rj] {
    color: #f3f4f6;
    /* gray-100 */
}

/* Paragraphs */
.news-outlet-content p[b-5c2byfr0rj] {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Small text (dates) */
.news-outlet-content small[b-5c2byfr0rj] {
    font-size: 0.875rem;
    /* text-sm */
    color: #6b7280;
    /* gray-500 */
    display: block;
    margin-bottom: 1rem;
}

.dark .news-outlet-content small[b-5c2byfr0rj] {
    color: #9ca3af;
    /* gray-400 */
}

/* Separator */
.news-outlet-content hr[b-5c2byfr0rj] {
    border: 0;
    border-top: 1px solid #e5e7eb;
    /* gray-200 */
    margin: 1.5rem 0;
}

.dark .news-outlet-content hr[b-5c2byfr0rj] {
    border-top-color: #374151;
    /* gray-700 */
}

/* Action Bar Styling */
.action-btn[b-5c2byfr0rj] {
    transition: all 0.2s;
}

.action-btn:hover[b-5c2byfr0rj] {
    transform: translateY(-2px);
}
