* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

#map {
    width: 100%;
    height: 100vh;
}

.rain {
    background-color: lightblue;
    background-image: url("icons/rain.svg");

}

.sun {
    background-color: gold;
    background-image: url("icons/sun.svg");

}

.icon {
    border: solid black 1px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 25px;
}

.unknown {
    background-color: brown;
    background-image: url("icons/unknown.svg");
}

.fog {
    background-color: gray;
    background-image: url("icons/fog.svg");
}

.haze {
    background-color: grey;
    background-image: url("icons/haze.svg");
}

.spell {
    background-color: lightyellow;
    background-image: url("icons/spell.svg");
}

.snow {
    background-color: whitesmoke;
    background-image: url("icons/snow.svg");
}

h3 {
    margin: 0;
}

.day {
    display: flex;
    height: fit-content;
    gap: 30px;
    justify-content: center;
}

.day div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.day div div {

    width: 25px;
    height: 25px;
}

.ah {
    display: flex;
    flex-direction: column;
    min-width: 300px;
    min-height: 100px;
}

.p-2 {
    display: none;
}

.daily p {
    margin: 0;
    font-size: 10px;
}

.daily h4 {
    margin: 0;
}

.selected {
    border: 5px solid red;
}

form {
    position: fixed;
    top: 20px;
    left: 50px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.icon-wrapper {
    background: transparent;
    border: none;
}

.icon {
    width: 30px;
    height: 30px;
    position: relative;
}

/* Température à droite */
.icon .temp {
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid black;
    border-radius: 999px;
    padding: 2px 6px;
    font-size: 10px;
    white-space: nowrap;
}