@import url('https://fonts.googleapis.com/css2?family=Unica+One&display=swap');

body {
    font-family: 'Unica One', sans-serif;
    background-color: #121212;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

#chart-container {
    width: 80%;
    margin: 20px 0;
}

h1 {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.metrics {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.metrics div {
    margin: 5px 0;
}

#time-frame-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#time-frame-buttons button {
    margin: 0 5px;
    padding: 10px 20px;
    background-color: #1E1E1E;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#time-frame-buttons button:hover {
    background-color: #333333;
}

#time-frame-buttons .active {
    background-color: #4CAF50; /* Highlight color */
    color: white;
}

.footer {
    text-align: center;
    padding: 10px;
}

.footer p {
    width: 80%;
    margin: 20px 0;
    font-size: 0.9em;
    padding: 10px 20px;
    align-items: center;
}
