/* ===================================
   IEC CABLE SIZING CALCULATOR
   Calculator-Specific Styles
   =================================== */

/* Color-coded status messages - no background highlighting */
.csc-warning-bad {
    color: #b00020;
}
.csc-warning-ok {
    color: #007700;
}
.csc-warning-warn {
    color: #b36b00;
}
.csc-warning-info {
    color: #2d4a6b;
}

body.dark-mode .csc-warning-bad {
    color: #e74c3c;
}
body.dark-mode .csc-warning-ok {
    color: #5dade2;
}
body.dark-mode .csc-warning-warn {
    color: #f39c12;
}
body.dark-mode .csc-warning-info {
    color: #b8c9db;
}

/* ===================================
   SMALL NOTES STYLING
   Inline helper notes within input cells
   =================================== */

.small-note {

    font-size: 11px;
    line-height: 1.2;
    margin-top: 0px;
    margin-bottom: 0px;
    color: #778899;
}

body.dark-mode .small-note {
    color: #778899; 
}

.iec-note {
    font-size: 12px;
    color: #778899;
    margin-top: 4px;
}

/* ============================================
   DARK MODE STYLES
   ============================================ */

body.dark-mode .iec-note {
    color: #778899;
}

/* ===== MOBILE RESPONSIVENESS ===== */

@media (max-width: 768px) {
    .container {
        padding: 10px 5px;
    }
}

