/* 
   AuditBerry Thermal Guard Styles (v16.5)
   Estética Sovereign: Glassmorphism + Amber Neon
*/

.thermal-alert-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.thermal-modal-content {
    background: rgba(255, 191, 0, 0.1);
    border: 1px solid rgba(255, 191, 0, 0.4);
    box-shadow: 0 0 30px rgba(255, 191, 0, 0.2);
    border-radius: 28px;
    padding: 30px;
    max-width: 400px;
    text-align: center;
    color: #fff;
    animation: thermalPulse 2s infinite alternate;
}

@keyframes thermalPulse {
    from { border-color: rgba(255, 191, 0, 0.3); box-shadow: 0 0 10px rgba(255, 191, 0, 0.1); }
    to { border-color: rgba(255, 191, 0, 0.7); box-shadow: 0 0 40px rgba(255, 191, 0, 0.4); }
}

.thermal-icon {
    font-size: 3rem;
    color: #ffbf00;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 191, 0, 0.6);
}

.thermal-title {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffbf00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.thermal-body {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
    opacity: 0.9;
}

.thermal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-thermal-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-thermal-continue {
    background: #ffbf00;
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(255, 191, 0, 0.3);
    transition: all 0.3s;
}

.btn-thermal-continue:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(255, 191, 0, 0.5); }

/* PC Dashboard Extensions */
.thermal-warning-row {
    background: rgba(255, 191, 0, 0.1) !important;
    border-left: 4px solid #ffbf00 !important;
}

.thermal-risk-badge {
    background: #ffbf00;
    color: #000;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}
