﻿.empty-state {
    width: 100%;
    height: 100%;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    border: 2px dashed #e5e7eb;
    border-radius: 16px;
    background: #fafafa;
    text-align: center;
}

    .empty-state .empty-icon {
        font-size: 36px;
        opacity: 0.8;
    }

        .empty-state .empty-icon .fa-spin {
            color: #007aff;
        }

    .empty-state .empty-title {
        text-align: center;
        font-size: 18px;
        font-weight: 600;
        color: #111827;
    }

    .empty-state .empty-subtitle {
        text-align: center;
        font-size: 14px;
        color: #6b7280;
    }

    .empty-state .empty-action {
        border-radius: 6px;
        padding: 6px 14px;
        font-weight: 500;
    }

        .empty-state .empty-action:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 14px rgba(0,0,0,0.1);
        }

.empty-state-notion {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 260px;
    padding: 48px 32px;
    border-radius: 16px;
    background: white;
    border: 1px solid #edf2f7;
    animation: fadeIn .35s ease-out;
}

    .empty-state-notion .empty-icon {
        width: 72px;
        height: 72px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: #f3f6fb;
        color: #94a3b8;
        font-size: 30px;
    }

    .empty-state-notion .empty-title {
        text-align: center;
        font-size: 22px;
        font-weight: 700;
        color: #0f172a;
    }

    .empty-state-notion .empty-subtitle {
        max-width: 420px;
        text-align: center;
        color: #64748b;
        line-height: 1.6;
        font-size: 14px;
    }