/* PFAS Modeler Calculator Styles */

.coming-soon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(18, 113, 185, 0.6) 0%, rgba(13, 90, 148, 0.6) 100%);
    backdrop-filter: blur(6px);
    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;
}

/* Collapsible advanced options */
details[open] > summary .advanced-chevron {
    transform: rotate(90deg);
}

details > summary::-webkit-details-marker {
    display: none;
}

/* Collapsible result sections */
.results-details {
    transition: box-shadow 0.2s;
}

.results-details[open] {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.results-details[open] > .results-summary .detail-chevron {
    transform: rotate(90deg);
}

.results-summary:hover {
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 0.5rem;
}
