/* PFAS Modeler Calculator Styles */

.coming-soon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1271b9 0%, #0d5a94 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-hidden {
    display: none;
}

.input-group {
    margin-bottom: 1rem;
}

.input-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

.input-field {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.input-field:focus {
    outline: none;
    border-color: #1271b9;
    box-shadow: 0 0 0 3px rgba(18, 113, 185, 0.1);
}

select.input-field {
    cursor: pointer;
}

.traffic-light {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.traffic-light.GREEN {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #16a34a;
}

.traffic-light.YELLOW {
    background-color: #fef3c7;
    color: #854d0e;
    border: 1px solid #f59e0b;
}

.traffic-light.RED {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #dc2626;
}
