/* IWØRQH - Styles for Thermal Monitoring & Charts */

/* Stile Icona nel Titolo */
.main-title i {
    margin-right: 10px;
    vertical-align: middle;
}

.thermal-container { 
    width: 100%; 
    max-width: var(--max-width); 
    margin: 0 auto; 
    padding: 0 10px; 
}

/* Griglia per le card dei valori attuali */
.thermal-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.thermal-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.thermal-card:hover {
    transform: translateY(-4px);
}

.thermal-card h3 { 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    color: var(--text-dim); 
    letter-spacing: 1.5px; 
    margin-bottom: 12px; 
    font-weight: 800;
}

.thermal-card .value { 
    font-size: 2.4rem; 
    font-weight: 800; 
    color: var(--text-main);
    font-variant-numeric: tabular-nums;
}

/* Colori specifici per differenziare i sensori */
.text-aria { color: #3b82f6 !important; }    /* Blu luminoso */
.text-asfalto { color: #f59e0b !important; } /* Arancio/Ambra */

/* Wrapper per i grafici */
.thermal-chart-wrapper {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 25px;
    height: 550px;
    margin-bottom: 30px;
}

/* Pannello controlli (Date Picker) */
.thermal-controls {
    background: var(--card);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    border: 1px solid var(--border);
}

.thermal-controls label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
}

/* Stile per l'input data compatibile con Light/Dark Mode */
.thermal-date-input {
    background: var(--bg);
    color: var(--text-main);
    border: 1px solid var(--border);
    padding: 10px 15px;
    border-radius: 8px;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s;
}

.thermal-date-input:focus {
    border-color: var(--accent);
}

/* Box Alert Sicurezza */
.thermal-alert-box {
    margin-bottom: 25px; 
    padding: 20px; 
    border-radius: 12px; 
    text-align: center; 
    transition: all 0.5s ease; 
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.thermal-alert-icon { font-size: 2em; margin-bottom: 10px; color: var(--accent); }
.thermal-alert-text { font-weight: bold; font-size: 1.2em; text-transform: uppercase; letter-spacing: 1px; color: var(--text-main); }
.thermal-alert-sub { margin-top: 8px; font-size: 0.85em; opacity: 0.8; color: var(--text-dim); }

/* Box Informativo Migliorato */
.thermal-info-box {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.thermal-info-box h4 {
    color: var(--text-main);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    margin-top: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    margin-bottom: 15px;
}

/* Colori Legenda */
.text-aria { color: #3b82f6 !important; }    /* Blu luminoso */
.text-asfalto { color: #f59e0b !important; } /* Arancio/Ambra */
.text-rugiada { color: #2ecc71 !important; } /* Verde Rugiada */

.thermal-info-box ul { 
    list-style: none; 
    padding-left: 0; 
    margin: 0; 
}

.thermal-info-box li { 
    margin-bottom: 10px; 
    display: flex;
    align-items: center;
}

.thermal-info-box li i {
    width: 25px;
    text-align: center;
    margin-right: 8px;
}

.thermal-info-box li strong { 
    margin-right: 5px; 
}

/* Adattamento Grafico */
.thermal-chart-wrapper {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 20px;
    height: 450px; 
    position: relative;
    margin-bottom: 30px;
}

/* Stati Dinamici Alert Sicurezza */
.thermal-alert-box.alert-pericolo {
    background: rgba(239, 68, 68, 0.15) !important;
    color: #ef4444 !important;
    border: 1px solid #ef4444 !important;
    border-left: 6px solid #ef4444 !important;
}

.thermal-alert-box.alert-attenzione {
    background: rgba(245, 158, 11, 0.15) !important;
    color: #f59e0b !important;
    border: 1px solid #f59e0b !important;
    border-left: 6px solid #f59e0b !important;
}

.thermal-alert-box.alert-sicuro {
    background: rgba(16, 185, 129, 0.1) !important;
    color: #10b981 !important; /* Usato colore esplicito per sicurezza */
    border: 1px solid #10b981 !important;
    border-left: 6px solid #10b981 !important;
}