#weatherPopup {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 320px;
    /* --- PERUBAHAN UTAMA DI SINI: background-color diubah menjadi RGBA transparan (0.5) --- */
    background-color: rgba(0, 153, 5, 0.692); 
    padding: 1.25rem;
    border-bottom-left-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
    box-shadow: -0.5rem 0 1rem rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
    z-index: 1050;
    color: white;
    backdrop-filter: blur(4px);
}

#weatherPopup.show {
    transform: translateX(0);
}

#openBtn,
#closeBtn {
    /* Gaya umum dan penyejajaran vertikal */
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    /* --- PERUBAHAN UTAMA DI SINI: background-color diubah menjadi RGBA transparan (0.5) --- */
    background-color: rgba(0, 153, 5, 0.692); 
    padding: 0.75rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    cursor: pointer;
    border: none;
    color: white;
    z-index: 1060;
    transition: opacity 500ms, transform 500ms;
}

#openBtn {
    right: 1.5rem;
}

/* Penyejajaran Tombol Tutup RELATIF terhadap Popup */
#weatherPopup #closeBtn {
    position: absolute;
    top: 50%;
    /* Penyejajaran Sempurna */
    left: -2.5rem;
    transform: translateY(-50%);
    /* Penyejajaran Sempurna */
    z-index: 1070;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-gray-300 {
    color: #ffffff;
}

.text-gray-400 {
    color: #ffffff;
}