@charset "utf-8";
/* CSS Document */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
  }
/* --- 1. Estilos Generales y Contenedores --- */
.sombra_celda {
    box-shadow: 4px 4px 8px rgba(201,201,201,0.3);
}

.contenedor-icono {
    font-size: 17px;
    color: white;
}

.texto_mail {
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    color: white;
    text-decoration: none;
}

/* --- 2. La Tabla Principal --- */
.tabla-pronostico {
    width: 900px; 
    margin: 30px auto;
    border-collapse: separate; 
    border-spacing: 0;
    table-layout: fixed; 
    border: 1px solid #d1d5db;
    border-radius: 15px;
    overflow: hidden; 
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- 3. Cabeceras (Azul Normal) --- */
.cabecera-comun {
    background-color: #2b87c2 !important;
    color: white !important;
    padding: 12px 2px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 500;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

/* --- 4. Resaltado de HOY (Cabecera y Texto Amarillo) --- */
.es-hoy {
    background-color: #1a5c85 !important; /* Azul más oscuro */
    color: #ffeb3b !important;           /* Texto Amarillo/Dorado */
    font-weight: bold !important;
    box-shadow: inset 0 -3px 0 rgba(0,0,0,0.3);
}

/* --- 5. Cuerpo de la Tabla y Hover --- */
.celda-pronostico {
    padding: 20px 5px;
    border-right: 1px solid #f0f0f0;
    vertical-align: top;
    background-color: #ffffff;
    transition: background-color 0.3s ease; 
}

/* Hover para celdas normales */
.celda-pronostico:hover {
    background-color: #f8faff;
}

/* Resaltado especial para el CUERPO de la columna de hoy */
.celda-hoy-resaltada {
    background-color: #fffef2 !important; /* Fondo crema muy suave */
}

/* Hover especial para la columna de hoy */
.celda-hoy-resaltada:hover {
    background-color: #fff9c4 !important; /* Amarillo más intenso al pasar el mouse */
}

/* --- 6. Ajustes de Detalles --- */
.cabecera-comun:last-child, .celda-pronostico:last-child {
    border-right: none;
}

.texto-descripcion {
    font-size: 0.82rem;
    line-height: 1.4;
    color: #333;
    margin: 15px 0;
    text-align: center;
    min-height: 95px; 
    display: flex;
    align-items: flex-start; 
    justify-content: center;
}
.icono_ciudad {
	font-size: 22px;
	color: #000000;
	}