*{
    color: white;
    margin: 0;
    font-family: "DM Sans", sans-serif;
}

body {
    background-color: #01012A;
}

#header {
    display: grid;
    grid-template-columns: [first] 10% [line2] 80% [line3] 10% [end];
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    grid-column: line2 / line2;

    height: 100px;;
}

.logo {
    width: 150px;
    margin-right: 20px;
}

.grid-content {
    display: grid;
    height: calc(100vh - 50px);

    grid-template-columns: [first] 10% [line2] 80% [line3] 10% [end];
    grid-template-rows: [first] 30% [line2] 60% [line3] 10%;
}

#header-content {
    grid-column: line2 / line2;
    grid-row: first / first;
}

.title {
    text-align: center;
    margin: 30px 0 40px 0;
    font-size: 48px;
    font-weight: bold;
    font-family: "Bricolage Grotesque", sans-serif !important;
}

.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.search-container input[type="text"] {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    width: 450px;
    background-color: #242440;
    outline: none;
    margin-right: 12px;
}

.search-container button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    background-color: #4856D6;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#content {
    display: grid;

    grid-template-columns: [first] 70% [line2] 30%;

    grid-column: line2 / line2;
    grid-row: line2 / line2;
}

/*=================
    LEFT SIDE
=================*/

#weatherInfo {
    margin-right: 12px;
    height: fit-content;
}

.current-weather {
    background-image: url('img/bg-today-large.svg');
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;

    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between
}

.weather-details {
    display: flex;
    align-items: center;
}

#date {
    margin-top: 8px;

    font-size: 14px;
    color: #eeeeee;
}

#weatherIcon {
    margin-right: 32px;;
}

#temperature {
    font-size: 90px;
    font-style: italic;
    font-weight: bold;
    margin-right: 20px;
}

/*====== Additional Content ======*/

#additional-content {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 24px;
}

.additional-info {
    background-color: #242440;
    width: 150px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #191f57;
}

.additional-title {
    margin-bottom: 12px;
    font-size: 14px;
    color: #bdbdbd
}

.additional-value {
    font-size: 24px;
}



/*======= Daily Forecast =======*/
#daily-content {
    margin-top: 40px;
}

.daily-title {
    margin-bottom: 12px;
}

#forecastContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forecast-item {
    background-color: #242440;
    padding: 8px 4px;
    border-radius: 8px;
    border: 1px solid #191f57;
    height: 110px;
    min-width: 80px;
    display: flex;
    align-items: center;
    flex-flow: column;
    justify-content: space-between;
}

.forecast-temps {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.daily-value {
    font-size: 14px;
    color: #bdbdbd
}

/*===============
HOURLY FORECAST
==================*/
#hourlyForecast {
    background-color: #242440;
    padding: 16px 12px;
    border-radius: 8px;
    margin-left: 12px;
    height: 584px;
}

#hourlyContainer {
    overflow-y: auto;
    height: 94%;
}

.headerHourly {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#selectDay, #selectUnit {
    background-color: #2e2e53;

    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #191f57;
}

.time-container {
    display: flex;
    align-items: center;
}

.hourlyItem {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 8px;

    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #191f57;

    background-color: #2e2e53;
}