/* assets/css/style.css */

/* Importamos una fuente moderna desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --primary-blue: #0d6efd;
    --dark-depsa: #212529;
    --light-bg: #f8f9fa;
    --success-green: #198754;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: #333;
}

/* Navbar personalizada */
.navbar-custom {
    background-color: #263C88;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 45px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* Tarjetas (Cards) con estilo moderno */
.card-custom {
    border: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff;
}

.card-custom:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}

/* Botones con bordes más suaves */
.btn {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
}

/* Atenúa botones para que no se pueda picar dos veces */
button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* Estilo para las tablas */
.table-container {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}