html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

@media only screen and (max-width: 1200px) {
    th:nth-child(1) {
        display: none;
    }

    td:nth-child(1) {
        display: none;
    }

    td:nth-child(2) {
        width: auto
    }
}

/* =================================================================== */
/* --- ESTILOS FINALES PARA ENCABEZADO (IZQ-CENTRO-DER) --- */
/* =================================================================== */

/* Estilo para el contenedor del modal (esto no cambia) */
#modalYappy .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Estilo del encabezado del modal */
#modalYappy .modal-header {
    background-color: #f7f7f7;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* 1. Logo Izquierdo (Tu tienda) - Usamos el tamaño que te gustó */
#header-logo-tienda {
    max-height: 125px;
    width: auto;
    min-width: auto;
}

/* 2. Título Central */
#header-title-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

/* 3. Logo Derecho (Yappy) */
#header-logo-yappy {
    max-height: 100px; /* Un tamaño visible pero secundario */
    width: auto;
    min-width: auto;
}

/* =================================================================== */
/* --- SECCIÓN RESPONSIVE PARA EL NUEVO DISEÑO --- */
/* =================================================================== */
@media (max-width: 767px) {
    /* En pantallas pequeñas, 125px es demasiado grande. Lo reducimos. */
    #header-logo-tienda {
        max-height: 60px;
    }

    /* También reducimos el logo de Yappy */
    #header-logo-yappy {
        max-height: 50px;
    }

    /* Y hacemos la letra del título un poco más pequeña */
    #header-title-text {
        font-size: 1rem;
    }
}