/* EMPTY STATES */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
    min-height: 300px;
}
.empty-state-icon {
    margin-bottom: 20px;
    opacity: 0.7;
}
.empty-state-icon svg {
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}
.empty-state-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.empty-state-text {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 360px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.empty-state-cta {
    padding: 10px 24px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}
.empty-state-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
