/* Empty State - Padrão Laravel */
.emptyState {
    padding: 40px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.emptyStateContent {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.emptyIcon {
    font-size: 48px;
    color: #95a5a6;
    margin-bottom: 16px;
    display: block;
    opacity: 0.7;
}

.emptyTitle {
    font-size: 18px;
    color: #2c3e50;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.emptyDescription {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0 0 20px 0;
    line-height: 1.5;
    max-width: 500px;
}

.emptyAction {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .emptyState {
        padding: 40px var(--padding-lg);
        min-height: 300px;
    }

    .emptyIcon {
        font-size: 60px;
    }

    .emptyTitle {
        font-size: var(--font-size-xxl);
    }
}
