@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800;900&display=swap');

html {
    scroll-behavior: smooth;
}

/* Smooth transition for theme switching */
body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Ensure chart canvas doesn't look weird during resize */
canvas {
    width: 100% !important;
}