.weather-drawer {
    position: fixed;
    top: 44%;
    left: -250px;
    /* Initially hidden off-screen */
    width: 200px;
    height: 130px;
    background-color: #a2a7ad;
    transition: left 0.5s ease;
    z-index: 9999;
    padding-left: 30px;
    border-radius: 0px 20px 20px 0px;
}

.weather-drawer-content p {
    margin: 0;
    padding: 0;
}

.weather-drawer-content {
    padding: 10px 0px 0px 20px;
    color: white;
}

.weather-drawer-handle {
    position: fixed;
    top: 50%;
    left: 0;
    width: 40px;
    height: 40px;
    background-color: #a2a7ad;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    z-index: 9999;
}

/* .weather-drawer-handle:hover {
    background-color: transparent;
} */

.weather-drawer-handle span {
    font-size: 24px;
}