/* styles.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

.banner-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: lightblue;
    padding: 20px;
}

.content-box {
    background-color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    margin: 20px;
}

.current-date {
    font-size: 1.2rem;
    margin: 0;
}

.indicator-value {
    font-size: 3rem;
    margin: 10px 0;
    font-weight: bold;
}

iframe {
    display: block; /* Make the iframe a block-level element */
    margin: 0 auto; /* Center the iframe horizontally */
    width: 100%; /* Adjust the width as needed */
    height: 500px; /* Adjust the height as needed */
    border: none;
}

.centered {
    display : block;
    margin : 0 auto;
    text-align: left;
    width: 100%;
    }