body {
    font-family: "Poppins", serif;
    margin: 0;
    background: #3967e4;
}

.container {
    margin: auto;
    background: #3967e4;
    padding: 10px;
    padding-bottom: 100px;
    color: white;
}

#currentWeather {
    background-color: #163ca5;
    padding: 10px 10px 20px 10px;
    border-radius: 5cap;
}

h1 {
    text-align: center;
    font-size: 40px;
}

h2 {
    text-align: center;
    font-size: 20px;
}

h3 {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    margin: 0 10px 20px 10px;
}

p {
    font-size: 12px;
    padding: 10px;
    margin-left: 10px;
}

p2 {
    font-size: 12px;
    padding: 10px;
    margin: -30px 0 0 10px;
}

#precipIcon {
    width: 45px;
}

#precipitation {
    margin: -30px 0 0 10px;
}

#hourly {
    background-color: #163ca5;
    color: white;
    border-radius: 5cap;
    margin-bottom: 10px;
}

#hourIcon {
    width: 70px;
    height: 70px;
    margin-left: auto;
}

#daily {
    background-color: #163ca5;
    color: white;
    border-radius: 5cap;
    margin-bottom: 10px;
}

#dayIcon {
    width: 70px;
    height: 70px;
    margin-left: auto;
}

#topIcon {
    width: 350px;
    height: 350px;
    margin: -60px 0 -60px 0;
}

#alerts {
    text-align: center;
}

#unit {
    padding: 8px;
    margin: 5px 20px 5px 20px;
    border: none;
    cursor: pointer;
    background: white;
    color: #163ca5;
    border-radius: 5cap;
    text-align: center;
    font-weight: bold;
    width: 90px;
}

.weather-icon {
    width: 50px;
    height: 50px;
}

.hourly-item, .daily-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 5px 0;
}

.bottom-tab {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #163ca5;
    display: flex;
    justify-content: center;
    gap: 35px;
    padding: 10px 0;
    z-index: 1000;
}

.bottom-tab button {
    padding: 10px 20px;
    width: 100px;
    cursor: pointer;
    border: none;
    background-color: #3967e4;
    color: white;
    border-radius: 5cap;
    font-weight: bold;
}

.bottom-tab button.active {
    background-color: white;
    color: #163ca5;
}

.bottom-tab button:hover {
    background-color: white;
    color: #163ca5;
}

#radar-container {
    background-color: #163ca5;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
}

#radar-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 10px;
    border-radius: 5px;
}

#map {
    width: 100%;
    height: 400px;
    border-radius: 5px;
    margin-top: 10px;
}