/* Pool Volume Calculator - Calculator-specific styles */

/* Diagram section */
.diagram-section {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    padding: 16px;
    background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
    border-radius: var(--radius-sm);
    border: 1px solid #bfdbfe;
}

.calc-diagram {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.calc-diagram.hidden {
    display: none;
}

/* SVG diagram labels */
.diagram-label {
    font-size: 12px;
    font-weight: 600;
    fill: #003049;
}

.diagram-label-sm {
    font-size: 10px;
    font-weight: 500;
    fill: #003049;
}

/* Form hint text */
.form-hint {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}

/* Results note styling */
.results-note {
    font-size: 13px;
    color: #6b7280;
    margin-top: 12px;
    font-style: italic;
}

/* Volume highlight */
.results-value {
    font-weight: 600;
    color: #1e40af;
}

/* Chemical estimates styling */
.results-section:last-child .results-value {
    color: #059669;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .calc-diagram {
        max-width: 250px;
    }

    .diagram-label {
        font-size: 10px;
    }

    .diagram-label-sm {
        font-size: 9px;
    }
}
