/* Sticky Header */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    background-color: rgba(0, 0, 0, 0.8);
    transition: background-color 0.3s ease-in-out;
}

body.scrolled #header {
    background-color: rgba(0, 0, 0, 1);
}

html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 100px; /* Adjust this value based on your header's height */
}

#main {
    flex-grow: 1;
}

/* Custom spacing for charts */
.chart-bottom-margin {
    margin-bottom: 3.6rem; /* 20% more than Bootstrap's mb-5 (3rem) */
}

#multi-chart-container {
    margin-bottom: 10rem;
}

.footer .footer-top {
  padding: 25px 0 0 0;
}

.footer .copyright {
  padding: 10px 0 15px 0;
}