/* Sod Calculator - Calculator-specific styles */

/* Shape fields visibility */
.shape-fields.hidden {
    display: none;
}

/* Hidden utility class */
.hidden {
    display: none;
}

/* Results note styling */
.results-note {
    font-size: 13px;
    color: #6b7280;
    margin-top: 12px;
    font-style: italic;
}

/* Helper text under inputs */
.helper-text {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

/* Total cost highlight */
.total-cost {
    font-weight: 700;
    color: #059669;
}

/* Highlight important results */
.result-highlight {
    background-color: #f0fdf4;
    border-left: 3px solid #059669;
    padding-left: 12px;
    margin-left: -12px;
}

/* Price input with dollar sign */
.input-unit-group .unit-label {
    display: flex;
    align-items: center;
    padding: 0 8px;
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    border-right: none;
    border-radius: 6px 0 0 6px;
    color: #374151;
    font-weight: 500;
}

.input-unit-group .unit-label + .form-input {
    border-radius: 0 6px 6px 0;
}
