.empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.empty-state-content {
    text-align: center;
    max-width: 24rem;
}

.empty-state-icon {
    margin-bottom: 1.5rem;
    color: #9ca3af;
}

.empty-state-icon svg {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto;
}

.empty-state-title {
    color: #374151;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.empty-state-message {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .empty-state {
        padding: 2rem 1rem;
    }

    .empty-state-icon svg {
        width: 3rem;
        height: 3rem;
    }

    .empty-state-title {
        font-size: 1rem;
    }
}
