/* css/modal-grill.css - SCOPED */

/* --- LAYOUT --- */
#modal_grill .modal-top-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 15px; margin-bottom: 10px; flex-shrink: 0;
}

#modal_grill .detail-card {
    background: #252527; border-radius: 18px; padding: 10px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative; border: 1px solid #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); min-height: 140px;
}

/* Akzentfarbe: Glut-Rot */
#modal_grill .detail-card.grill-accent {
    border-color: rgba(255, 118, 117, 0.4);
}

#modal_grill .detail-title {
    font-size: 0.7rem; color: #888; text-transform: uppercase; letter-spacing: 1px;
    position: absolute; top: 10px; left: 0; width: 100%; text-align: center;
    z-index: 10;
}

/* --- VISUALS --- */

/* 1. Decken-Visualisierung (Das Dach) */
#modal_grill .roof-wrapper {
    position: relative;
    width: 80px; height: 60px;
    margin-top: 15px;
    display: flex; justify-content: center;
}

/* Das Dach selbst (Dreieck) */
#modal_grill .roof-shape {
    width: 0; height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 30px solid #444; /* Dachfarbe Basis */
    position: relative;
    z-index: 2;
    transition: border-bottom-color 0.5s;
}

/* Wärmestrahlung unter dem Dach */
#modal_grill .heat-radiation {
    position: absolute; top: 30px; left: 10px; width: 60px; height: 30px;
    background: radial-gradient(ellipse at top, rgba(255, 118, 117, 0.6) 0%, transparent 70%);
    opacity: 0.5;
    transition: opacity 0.5s;
}

/* Wert im Dach */
#modal_grill .roof-value {
    position: absolute; top: 35px;
    font-size: 1.2rem; font-weight: bold; color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}


/* 2. Luft-Temp (Thermometer Icon Style) */
#modal_grill .temp-visual {
    font-size: 2.5rem; color: #ff7675;
    margin-bottom: 5px; margin-top: 10px;
    filter: drop-shadow(0 0 5px rgba(255, 118, 117, 0.3));
}

/* 3. Feuchtigkeit (Tropfen) */
#modal_grill .hum-visual {
    font-size: 2.5rem; color: #74b9ff;
    margin-bottom: 5px; margin-top: 10px;
    filter: drop-shadow(0 0 5px rgba(116, 185, 255, 0.3));
}


/* --- CHART CONTAINER --- */
#modal_grill .chart-container {
    position: relative; width: 100%;
    min-height: 250px;
    background: rgba(255, 118, 117, 0.05); /* Rötlicher Hintergrund */
    border-radius: 15px; padding: 10px; margin-bottom: 5px;
    flex-grow: 1;
    border: 1px solid rgba(255, 118, 117, 0.1);
}

/* Responsive */
@media (min-width: 1000px) {
    #modal_grill .chart-container { min-height: 40vh; }
    #modal_grill .modal-top-grid { grid-template-columns: 1fr 1fr 1fr; }
}