/* Shared styles across all pages */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#calculator {
    flex: 1;
}

/* Chart container styling */
.chart-container {
    position: relative;
    height: 100%;
    width: 100%;
}

/* Form input styling */
input[type="number"], select {
    transition: all 0.2s ease;
}

input[type="number"]:focus, select:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

/* Result highlight styling */
.highlight {
    background-color: #eef2ff;
    border-left: 4px solid #6366f1;
    padding-left: 12px;
    margin-left: -16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .chart-container {
        height: 300px;
    }
}