/* =====================================================
EMPTY STATE CONTAINER
===================================================== */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    border: 1px dashed rgba(255,255,255,0.12);
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
    min-height: 320px;
}

/* =====================================================
EMPTY STATE ICON
===================================================== */
.empty-state-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 1.5rem;
    opacity: 0.7;
    color: rgba(255,255,255,0.6);
}

/* =====================================================
EMPTY STATE TITLE
===================================================== */
.empty-state-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

/* =====================================================
EMPTY STATE DESCRIPTION
===================================================== */
.empty-state-text {
    max-width: 480px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.68);
    margin-bottom: 2rem;
}

/* =====================================================
EMPTY STATE BUTTON
===================================================== */
.empty-state-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition:
        background-color 0.2s ease,
        transform 0.15s ease,
        box-shadow 0.2s ease;
}

/* Hover effect */
.empty-state-btn:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
