* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #eef2f6;
    color: #1f2933;
}

/* LOGIN */
.fondo-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-box {
    width: 100%;
    max-width: 380px;
    background: #ffffff;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.logo-login {
    text-align: center;
    margin-bottom: 22px;
}

.logo-login img {
    border-radius: 18px;
    max-width: 210px;
    width: 80%;
}

.login-box label {
    display: block;
    margin: 14px 0 6px;
    font-size: 14px;
    font-weight: bold;
}

.login-box input {
    width: 100%;
    padding: 12px;
    border: 1px solid #c9d2dc;
    border-radius: 10px;
    font-size: 15px;
}

.login-box input:focus {
    outline: none;
    border-color: #1f4e79;
    box-shadow: 0 0 0 3px rgba(31,78,121,0.15);
}

.login-box button {
    width: 100%;
    margin-top: 22px;
    padding: 13px;
    border: none;
    border-radius: 12px;
    background: #1f4e79;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.login-box button:hover {
    background: #153a5c;
}

.mensaje-error {
    background: #ffe0e0;
    color: #9b1c1c;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

/* DASHBOARD */
.dashboard-body {
    min-height: 100vh;
}

.topbar {
    background: #102a43;
    color: white;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar h1 {
    font-size: 20px;
    margin: 0;
}

.topbar a {
    color: white;
    text-decoration: none;
    background: #ef4444;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 14px;
}

.contenedor {
    max-width: 1100px;
    margin: 5px auto;
    padding: 0 18px;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card h2,
.card h3 {
    margin-top: 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.info-box {
    background: #f8fafc;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
}

.info-box b {
    display: block;
    margin-bottom: 6px;
    color: #475569;
}

.ok {
    color: #16a34a;
    font-weight: bold;
}

.alerta {
    color: #d97706;
    font-weight: bold;
}

.error {
    color: #dc2626;
    font-weight: bold;
}



.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-grid label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #334155;
    font-size: 14px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    padding: 11px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 15px;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    outline: none;
    border-color: #1f4e79;
    box-shadow: 0 0 0 3px rgba(31,78,121,0.12);
}

.btn-form {
    padding: 11px 18px;
    border: none;
    border-radius: 10px;
    background: #1f4e79;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.btn-form:hover {
    background: #153a5c;
}

/*----------------------------------------------------------------------------------------*/

.empresa-topbar {
    background: #102a43;
    color: white;
    padding: 14px 24px;
    display: grid;
    grid-template-columns: 180px 1fr 260px;
    align-items: center;
    gap: 18px;
}

.empresa-logo-box {
    width: 150px;
    height: auto;
    background: white;
    border-radius: 14px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empresa-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.empresa-fecha-hora {
    text-align: center;
}

#fechaActual {
    font-size: 15px;
    text-transform: capitalize;
    opacity: 0.9;
}

#horaActual {
    font-size: 26px;
    font-weight: bold;
    margin-top: 3px;
}

.empresa-user-box {
    text-align: right;
}

.empresa-nombre {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
}

.empresa-user-box a {
    display: inline-block;
    color: white;
    text-decoration: none;
    background: #ef4444;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
}

/*---------------------------------------------------------------------------------------*/


.empresa-nombre-linea {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
}

.btn-config-empresa {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 30px;
    background: #ffffff !important;
    color: #102a43 !important;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    padding: 0 !important;
}

.btn-config-empresa:hover {
    background: #7696c0 !important;
}

.btn-cerrar {
    display: inline-block;
    color: white;
    text-decoration: none;
    background: #ef4444;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
}

/*---------------------------------------------------------------------------------------*/

.acciones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.accion-card {
    display: block;
    padding: 18px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #1f2937;
    transition: 0.2s ease;
}

.accion-card:hover {
    background: #eef4fb;
    border-color: #1f4e79;
    transform: translateY(-2px);
}

.accion-card strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
    color: #102a43;
}

.accion-card span {
    display: block;
    font-size: 14px;
    color: #64748b;
}

/*---------------------------------------------------------------------------------------*/


/*---------------------------------------------------------------------------------------*/

.tabla {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.tabla thead {
    background: #102a43;
    color: white;
}

.tabla th {
    text-align: left;
    padding: 14px 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tabla td {
    padding: 14px 12px;
    font-size: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.tabla tbody tr:hover {
    background: #f8fafc;
}

.tabla td:last-child {
    text-align: center;
}


.btn-mini {
    display: inline-block;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 6px;
    text-decoration: none;
    background: #1f4e79;
    color: white;
}

.btn-mini:hover {
    background: #153a5c;
}
/*---------------------------------------------------------------------------------------*/
.header-config-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.header-config-top h2 {
    margin: 0;
}

.breadcrumb {
    margin-top: 12px;
    font-size: 14px;
    color: #64748b;
}

.breadcrumb a {
    color: #1f4e79;
    text-decoration: none;
    font-weight: bold;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 6px;
}
/*---------------------------------------------------------------------------------------*/

.btn-warning {
    background: #d97706 !important;
}

.btn-warning:hover {
    background: #b45309 !important;
}

.btn-success {
    background: #16a34a !important;
}

.btn-success:hover {
    background: #15803d !important;
}

.btn-danger {
    background: #dc2626 !important;
}

.btn-danger:hover {
    background: #b91c1c !important;
}

/*---------------------------------------------------------------------------------------*/
.acciones-botones {
    white-space: nowrap;
}

.acciones-botones a {
    margin-right: 6px;
}

.check-line {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-weight: normal !important;
}

.check-line input {
    width: auto !important;
}

/*---------------------------------------------------------------------------------------*/

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tabla-card {
    overflow-x: auto;
}

.tabla-admin {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.tabla-admin th,
.tabla-admin td {
    padding: 12px 10px;
    border-bottom: 1px solid #dce3eb;
    text-align: left;
    vertical-align: middle;
}

.tabla-admin th {
    color: #0b2545;
    font-weight: 700;
    background: #f3f6fa;
}

.acciones-tabla {
    white-space: nowrap;
}

.btn-mini {
    display: inline-block;
    padding: 7px 10px;
    border-radius: 8px;
    background: #0b2545;
    color: white;
    text-decoration: none;
    font-size: 13px;
    margin: 2px;
}

.btn-warning {
    background: #d97706;
}

.btn-success {
    background: #15803d;
}

.estado {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.estado-activa {
    background: #dcfce7;
    color: #166534;
}

.estado-suspendida {
    background: #fef3c7;
    color: #92400e;
}

.estado-vencida {
    background: #fee2e2;
    color: #991b1b;
}


/* =========================
   ADMIN - TABLAS Y FORMULARIOS
========================= */

.tabla-card {
    overflow-x: auto;
}

.tabla-admin {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.tabla-admin th,
.tabla-admin td {
    padding: 12px 10px;
    border-bottom: 1px solid #dce3eb;
    text-align: left;
    vertical-align: middle;
}

.tabla-admin th {
    color: #0b2545;
    font-weight: 700;
    background: #f3f6fa;
}

.acciones-tabla {
    white-space: nowrap;
}

.btn-mini {
    display: inline-block;
    padding: 7px 10px;
    border-radius: 8px;
    background: #0b2545;
    color: white;
    text-decoration: none;
    font-size: 13px;
    margin: 2px;
}

.btn-mini:hover {
    opacity: 0.85;
}

.btn-warning {
    background: #d97706;
}

.btn-success {
    background: #15803d;
}

.btn-secundario {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 8px;
    background: #64748b;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-secundario:hover {
    opacity: 0.85;
}

.estado {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.estado-activa {
    background: #dcfce7;
    color: #166534;
}

.estado-suspendida {
    background: #fef3c7;
    color: #92400e;
}

.estado-vencida {
    background: #fee2e2;
    color: #991b1b;
}

.input,
select.input {
    width: 100%;
    padding: 11px 12px;
    margin: 6px 0 14px 0;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}

.input:focus,
select.input:focus {
    outline: none;
    border-color: #0b2545;
}

label {
    font-weight: 700;
    color: #0b2545;
    display: block;
    margin-top: 8px;
}

.ok {
    color: #15803d;
    font-weight: 700;
}

.error {
    color: #b91c1c;
    font-weight: 700;
}
.alerta {
    color: #d97706;
    font-weight: bold;
}
.mensaje-card {
    border-left: 6px solid #0b2545;
}

.mensaje-info {
    background: #f8fafc;
}

.mensaje-aviso {
    background: #fff7ed;
    border-left-color: #d97706;
}

.mensaje-urgente {
    background: #fef2f2;
    border-left-color: #dc2626;
}

.campanita-mensajes {
    position: relative;
    display: inline-block;
    font-size: 24px;
    margin-left: 48%;
}

.campanita-mensajes span {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #dc2626;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 7px;
    border-radius: 999px;
}

.card-compacta {
    padding: 16px 18px;
}

.encabezado-linea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.encabezado-linea h2,
.encabezado-linea p {
    margin: 0;
}

.encabezado-linea p {
    margin-top: 4px;
    color: #64748b;
}

.form-linea {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
    width: 80%;
}

.input-linea {
     flex: 1; /* 🔥 esto lo hace crecer */
    min-width: 300px; /* opcional */
}

.mensaje-inline {
    margin: 10px 0 0 0;
}

.fila-categoria {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fila-categoria .input {
    margin: 0;
    flex: 1;
}

.fila-categoria .btn-mini {
    margin: 0;
    white-space: nowrap;
}
.resultados-busqueda {
    position: relative;
    width: 100%;
    margin-top: 5px;
    z-index: 50;
}

.item-busqueda {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 14px;
}

.item-busqueda:hover {
    background: #f1f5f9;
}
.bloque-presupuesto {
    margin-bottom: 16px;
}

.bloque-presupuesto h3 {
    margin-bottom: 4px;
}

.texto-ayuda {
    margin-top: 0;
    margin-bottom: 12px;
    color: #64748b;
    font-size: 14px;
}

.buscador-contenedor {
    position: relative;
}

.input-buscador {
    font-size: 16px;
    padding: 12px;
}

.resultados-busqueda {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    margin-top: 4px;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    overflow: hidden;
}

.item-busqueda {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.item-busqueda:last-child {
    border-bottom: none;
}

.item-busqueda:hover {
    background: #f1f5f9;
}

.seleccion-box {
    margin-top: 12px;
    padding: 10px 12px;
    background: #ecfdf5;
    border: 1px solid #86efac;
    border-radius: 8px;
    color: #166534;
    font-weight: 600;
}

.oculto {
    display: none;
}

.grid-item-presupuesto {
    display: grid;
    grid-template-columns: 2fr 2fr 90px 120px 130px;
    gap: 10px;
    align-items: start;
}

.grid-item-presupuesto .input {
    height: 40px;
    margin: 0;
}

.grid-item-presupuesto label {
    height: 18px;
    margin: 0 0 6px 0;
    display: block;
}

.acciones-item {
    padding-top: 24px;
}

.btn-agregar-item {
    width: 100%;
    height: 40px;
    margin: 0;
}


.grid-total-presupuesto label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 13px;
    color: #334155;
}

.acciones-item {
    display: flex;
    align-items: end;
}

.btn-agregar-item {
    width: 100%;
    height: 40px;
}

.bloque-total {
    margin-top: 16px;
}

.grid-total-presupuesto {
    display: grid;
    grid-template-columns: 180px 1fr 220px;
    gap: 14px;
    align-items: start;
}

.total-box {
    background: #0f172a;
    color: #ffffff;
    padding: 14px;
    border-radius: 10px;
    text-align: right;
}



.total-box strong {
    font-size: 26px;
}

.acciones-finales {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}


.grid-ver-presupuesto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dato-total {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
}

.observaciones-box {
    margin-top: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
}

.texto-descuento {
    display: block;
    margin-top: 6px;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
}

.total-box {
    background: #0f172a;
    color: #ffffff;
    padding: 14px;
    border-radius: 10px;
    text-align: right;
    align-self: end;
}

.total-titulo {
    display: block;
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 4px;
}

.total-importe {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 6px;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.total-importe span {
    font-size: inherit;
    color: inherit;
    display: inline;
    line-height: 1;
}

.simbolo-moneda {
    font-size: inherit;
}





.lista-flotante {
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #cfd8e3;
    border-radius: 6px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    z-index: 999;
    display: none;
    overflow: hidden;
}

.item-flotante {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

.item-flotante:hover {
    background: #f1f5f9;
}


/* BOTONES */
.btn-principal,
.btn-secundario,
.btn-volver {
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    transition: 
        background 0.2s ease,
        transform 0.15s ease,
        box-shadow 0.2s ease;
}

/* Principal */
.btn-principal {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
}

.btn-principal:hover {
    background: #1e40af; /* más oscuro */
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.45);
}

/* Secundario */
.btn-secundario {
    background: #64748b;
    color: #fff;
    box-shadow: 0 2px 6px rgba(100, 116, 139, 0.25);
}

.btn-secundario:hover {
      background: #334155; /* más oscuro que antes */
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(100, 116, 139, 0.4);
}

/* Volver */
.btn-volver {
    background: #334155;
    color: #fff;
    min-width: 110px;
    box-shadow: 0 2px 6px rgba(51, 65, 85, 0.25);
}

.btn-volver:hover {
    background: #0f172a; /* casi negro */
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.5);
}

/* Click */
.btn-principal:active,
.btn-secundario:active,
.btn-volver:active {
    transform: translateY(0);
    box-shadow: none;
}
.btn-principal:hover,
.btn-secundario:hover,
.btn-volver:hover {
    filter: brightness(1.1);
}

.contenedor {
    max-width: 1100px;
    margin: 30px auto;
    padding: 20px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.card-modulo {
    display: block;
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    text-decoration: none;
    color: #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.card-modulo:hover {
    transform: translateY(-2px);
}

.card-modulo h3 {
    margin-top: 0;
}
.tabla-listado {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.tabla-listado th,
.tabla-listado td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.tabla-listado th {
    background: #111;
    color: #fff;
}

.formulario {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    max-width: 520px;
}

.grupo-form {
    margin-bottom: 16px;
}

.grupo-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
}

.grupo-form input[type="text"] {
    width: 100%;
    padding: 11px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.alerta-error {
    background: #ffe0e0;
    border: 1px solid #ff9999;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 18px;
    color: #900;
}




/* =========================================================
   RESPONSIVE CELULAR
   ========================================================= */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .contenedor {
        width: 100%;
        padding: 10px;
        margin-top: 10px;
    }

    .card {
        padding: 14px;
        border-radius: 12px;
    }

    /* -----------------------------------------------------
       TOPBAR EMPRESA
    ----------------------------------------------------- */

    .empresa-topbar {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 14px 12px;
        gap: 14px;
    }

    .empresa-logo-box {
        width: 120px;
        margin: auto;
    }

    .empresa-user-box {
        text-align: center;
    }

    .empresa-nombre-linea {
        justify-content: center;
        flex-wrap: wrap;
    }

    #horaActual {
        font-size: 22px;
    }

    /* -----------------------------------------------------
       GRIDS
    ----------------------------------------------------- */

    .grid,
    .grid-2,
    .acciones-grid,
    .form-grid,
    .grid-ver-presupuesto,
    .grid-total-presupuesto {
        grid-template-columns: 1fr;
    }

    .info-box {
        padding: 14px;
    }

    /* -----------------------------------------------------
       FORMULARIOS
    ----------------------------------------------------- */

    .form-linea {
        flex-direction: column;
        width: 100%;
    }

    .input-linea {
        width: 100%;
        min-width: 100%;
    }

    .fila-categoria {
        flex-direction: column;
        align-items: stretch;
    }

    .fila-categoria .btn-mini {
        width: 100%;
    }

    /* -----------------------------------------------------
       ITEMS PRESUPUESTO
    ----------------------------------------------------- */

    .grid-item-presupuesto {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .acciones-item {
        padding-top: 0;
    }

    .btn-agregar-item {
        height: 42px;
    }

    /* -----------------------------------------------------
       BLOQUE TOTAL
    ----------------------------------------------------- */

    .total-box {
        width: 100%;
        text-align: center;
    }

    .total-importe {
        justify-content: center;
        font-size: 28px;
        flex-wrap: wrap;
    }

    /* -----------------------------------------------------
       ACCIONES FINALES
    ----------------------------------------------------- */

    .acciones-finales {
        flex-direction: column;
        align-items: stretch;
    }

    .acciones-finales .btn-principal,
    .acciones-finales .btn-secundario,
    .acciones-finales .btn-volver {
        width: 100%;
    }

    /* -----------------------------------------------------
       BOTONES
    ----------------------------------------------------- */

    .btn-principal,
    .btn-secundario,
    .btn-volver,
    .btn-form,
    .btn-mini {
        width: 100%;
        justify-content: center;
    }

    .acciones-botones {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .acciones-botones a {
        margin-right: 0;
    }

    /* -----------------------------------------------------
       ENCABEZADOS
    ----------------------------------------------------- */

    .encabezado-linea,
    .header-config-top {
        flex-direction: column;
        align-items: flex-start;
    }

    /* -----------------------------------------------------
       TABLAS
    ----------------------------------------------------- */

    .tabla-card,
    .tabla-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tabla,
    .tabla-admin {
        min-width: 700px;
    }

    /* -----------------------------------------------------
       BUSCADOR
    ----------------------------------------------------- */

    .input-buscador {
        font-size: 16px;
    }

    .resultados-busqueda {
        max-height: 260px;
        overflow-y: auto;
    }

    /* -----------------------------------------------------
       LOGIN
    ----------------------------------------------------- */

    .login-box {
        padding: 22px;
    }

    .logo-login img {
        width: 70%;
    }

    /* -----------------------------------------------------
       CAMPANITA
    ----------------------------------------------------- */

    .campanita-mensajes {
        margin-left: 0;
    }

}