/* ===================================
   ARC FLASH CALCULATOR
   Calculator-Specific Styles
   =================================== */

/* Arc Flash-specific results table customizations */
.results-table {
    margin-bottom: 10px;
}

.results-table td:first-child {
    text-align: left;
    padding-left: 10px;
}


.result-value {
    font-weight: normal;
}

.ppe-category {
    font-weight: normal;
    font-size: 16px;
}

/* Validation warnings */
.validation-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.validation-table th,
.validation-table td {
    padding: 6px;
    text-align: center;
    border: 1px solid #A9A9A9;
    background: #F9F9F9;
    font-size: 14px;
}

.validation-table th {
    background: #DCDCDC;
    color: #333;
    font-weight: normal;
    width: 40%;
}

body.dark-mode .validation-table th {
    background: #2a3f56;
    color: #e8f0f7;
}

body.dark-mode .validation-table td {
    background: #243447;
    color: #e8f0f7;
}

/* Select Dropdowns */
select {
    width: 100%;
    padding: 5px;
    border: none;    
    border-radius: 2px;
    font-size: 16px;
    background: white;
    color: #333;
}

body.dark-mode select {
    background: #2a3f56;
    color: #e8f0f7;
    border-color: #2d4a6b;
}

.status-ok {
    color: green;
}

.status-warning {
    color: orange;
}

.status-error {
    color: red;
}

/* Dark mode for note paragraphs */
body.dark-mode p[style*="color: #5a7a9e"],
body.dark-mode p[style*="font-size: 12px"] {
    color: #b8c9db !important;
}
