/* assets/css/custom.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif !important;
    background-color: #f4f6f8;
    color: #344767;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.5px;
}

/* Tarjetas con efecto flotante */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Tablas Modernas */
.table thead th {
    background-color: #f8f9fa;
    color: #64748b;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #e2e8f0;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.table td {
    padding: 1rem 0.75rem;
    vertical-align: middle;
    color: #475569;
    font-weight: 500;
}

/* Botones y Badges */
.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.btn-success {
    background-color: #10b981;
    border-color: #10b981;
}

.badge {
    padding: 0.5em 0.8em;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Navbar */
.navbar {
    background-color: #1e293b !important;
    /* Gris oscuro elegante */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
    padding-bottom: 1rem;
}