/* ============================================
   THIKAA EMPTY STATES
   Shown when list areas have no content
   ============================================ */

.tk-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
    min-height: 300px;
    animation: tkEmptyFadeIn 0.5s ease;
}

@keyframes tkEmptyFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.tk-empty-illustration {
    margin-bottom: 20px;
    opacity: 0.6;
    animation: tkEmptyFloat 3s ease-in-out infinite;
}

@keyframes tkEmptyFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.tk-empty-illustration svg {
    width: 64px;
    height: 64px;
}

.tk-empty-title {
    font-size: 18px;
    font-weight: 600;
    color: #334155;
    margin: 0 0 8px;
}

.tk-empty-desc {
    font-size: 14px;
    color: #94a3b8;
    margin: 0 0 24px;
    max-width: 320px;
    line-height: 1.5;
}

.tk-empty-btn {
    background: #075E54;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tk-empty-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(7, 94, 84, 0.3);
}

.tk-empty-btn:active {
    transform: translateY(0);
}

.tk-empty-btn i {
    font-size: 14px;
}

/* --- RESPONSIVE --- */
@media (max-width: 480px) {
    .tk-empty-state {
        padding: 32px 16px;
        min-height: 240px;
    }

    .tk-empty-illustration svg {
        width: 48px;
        height: 48px;
    }

    .tk-empty-title {
        font-size: 16px;
    }

    .tk-empty-desc {
        font-size: 13px;
    }
}
