body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.dashboard {
    width: 80%;
    max-width: 1200px;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    background: #1c1c1c;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

h1 {
    margin: 0;
}

#datetime {
    font-size: 1.2em;
    color: white;
}

main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

section {
    background: #2c2c2c;
    border-radius: 10px;
    padding: 20px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

h2 {
    margin-top: 0;
    /* red */
    color: white;
}

.temp-current {
    font-size: 2em;
}

.temp-high-low {
    color: white;
}

.graph {
    position: relative;
    height: 300px;
}
.chartjs-render-monitor {
    transition: all 0.5s ease; /* apply transition to chart elements */
}
