.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background: var(--background-color-light);
    border-radius: var(--border-radius-lg);
    margin: 1rem;
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-color-light);
}

.empty-state-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.empty-state-description {
    font-size: 0.9rem;
    color: var(--text-color-secondary);
    max-width: 280px;
    line-height: 1.4;
}

/* Responsive adjustments */
@media screen and (max-width: 375px) {
    .empty-state {
        padding: 1.5rem;
    }

    .empty-state-icon {
        font-size: 2.5rem;
    }

    .empty-state-title {
        font-size: 1.1rem;
    }

    .empty-state-description {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 320px) {
    .empty-state {
        padding: 1rem;
    }

    .empty-state-icon {
        font-size: 2rem;
    }

    .empty-state-title {
        font-size: 1rem;
    }

    .empty-state-description {
        font-size: 0.8rem;
    }
} 