/* Importa a fonte 'Inter' do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Define a fonte e a cor de fundo padrão para a página */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc; /* Cor de fundo cinza claro (bg-slate-50) */
}

/* Classe personalizada para o gradiente do cabeçalho e botões */
.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Classe personalizada para a sombra dos cards */
.card-shadow {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
/* Estilos para transformar a tabela em cards no mobile */
@media (max-width: 767px) {
    .mobile-cards thead {
        display: none;
    }
    .mobile-cards tr {
        display: block;
        margin: 0 1rem 1rem 1rem;
        border-radius: 0.75rem;
        border: 1px solid #e2e8f0;
        box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
        padding: 1rem;
    }
    .mobile-cards td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f1f5f9;
    }
    .mobile-cards td:last-child {
        border-bottom: none;
        padding-top: 1rem;
        justify-content: flex-end; /* Alinha botões à direita */
    }
    .mobile-cards td::before {
        content: attr(data-label);
        font-weight: 600;
        margin-right: 0.5rem;
        color: #475569;
    }
}