body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0b2a4e;
    color: #fff;
}

.dashboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    padding: 20px;
}

.box {
    background-color: #1a3b5d;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.large-text {
    font-size: 2em;
    font-weight: bold;
}

.small-text {
    font-size: 1em;
}

.weather {
    grid-column: 3;
    grid-row: 1 / span 2;
    text-align: left;
}

.forecast {
    grid-column: 4 / span 1;
    grid-row: 1 / span 2;
    text-align: left;
}

.forecast div {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
}

.bar-chart {
    grid-column: 1 / span 3;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 150px;
}

.bar {
    width: 20px;
    background-color: #3498db;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    color: #fff;
}

.time {
    grid-column: 4;
    grid-row: 3;
    font-size: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
}
