/* Inflation Calculator Specific Styles */

/* Checkbox Styling */
input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

/* Results value styling */
.results-value {
    font-weight: 600;
    color: var(--color-primary);
}

/* Positive/negative indicators for purchasing power */
.results-value.positive {
    color: #16a34a;
}

.results-value.negative {
    color: #dc2626;
}

/* Responsive */
@media (max-width: 640px) {
    .button-group {
        flex-direction: column;
    }
}
