/* =============================================
   EMPTY STATE COMPONENT (REUSABLE)
   ============================================= */

.empty-state-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    min-height: 400px;
    background: radial-gradient(circle at center, rgba(114, 9, 183, 0.05) 0%, transparent 70%);
    border-radius: 24px;
    margin: 40px auto;
    max-width: 800px;
}

.empty-state-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 30px;
    font-size: 3rem;
    color: #a78bfa;
    box-shadow: 0 0 30px rgba(114, 9, 183, 0.1);
}

.empty-state-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(114, 9, 183, 0.2) 0%, transparent 70%);
    filter: blur(10px);
    z-index: -1;
}

.empty-state-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.empty-state-description {
    font-size: 1.1rem;
    color: #999;
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.empty-state-btn {
    background: linear-gradient(135deg, #7209b7 0%, #560bad 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(114, 9, 183, 0.3);
}

.empty-state-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(114, 9, 183, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.empty-state-btn i {
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.empty-state-container>* {
    animation: fadeInSlideUp 0.6s ease-out forwards;
}

.empty-state-title {
    animation-delay: 100ms;
}

.empty-state-description {
    animation-delay: 200ms;
}

.empty-state-btn {
    animation-delay: 300ms;
}