/* 
   CUSTOM.CSS - Asesorías Matta 
   Final Polish: Typography, Tables, Buttons
*/

/* 1. TYPOGRAPHY OVERRIDES */
body {
    font-family: 'Inter', sans-serif !important;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .font-weight-bold {
    font-family: 'Poppins', sans-serif !important;
}

/* 2. MODERN TABLES */
.table thead th {
    border-top: none !important;
    border-bottom: 2px solid #e9ecef !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    color: #6c757d;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.table tbody tr {
    transition: all 0.2s ease;
}

.table tbody tr:hover {
    background-color: #f8f9fa !important;
    -webkit-transform: scale(1.002);
    transform: scale(1.002);
}

.table td {
    vertical-align: middle !important;
    font-size: 0.9rem;
    color: #495057;
}

/* 3. GRADIENT BUTTONS */
.btn-primary {
    background: linear-gradient(135deg, #3490dc 0%, #2779bd 100%) !important;
    border: none !important;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.15s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2779bd 0%, #1c3d5a 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.btn-success {
    background: linear-gradient(135deg, #38c172 0%, #1f9d55 100%) !important;
    border: none !important;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-success:hover {
    background: linear-gradient(135deg, #1f9d55 0%, #1a8244 100%) !important;
    transform: translateY(-1px);
}

/* 4. CARD REFINEMENT */
.card {
    border: none !important;
    /* Soften standard Bootstrap shadows */
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
    transition: box-shadow 0.2s ease-in-out;
}

.card:hover {
     box-shadow: 0 0.5rem 2rem 0 rgba(58, 59, 69, 0.2) !important;
}

.card-header {
    border-bottom: 1px solid #f8f9fa !important;
}
