


.atas {
    display: inline-block;
    width: 90vw;
    padding: 5px;

}
.tambahan {
    display: flex;         
    background: rgb(252, 245, 252);

}

/*css untuk senarai dropdown */
.pilihan {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    gap: 15px;
    padding-top: 40px;
  }
  
.pilihan div {
    width: auto;
    height: 100px;
    margin-bottom: 5px;
  }
  .pilihan h5 {
    margin: 0;
    font-size: 14px;
    padding-bottom: 15px;
}

.pilihan select {
    width: 120px; /* Fixed width for dropdowns */
}


/*css untuk peta*/

#map {
    height: 70vh;
    width: 90vw;
}

/*feature dlm kotak atas kanan peta*/

#box-atas-kanan-peta {
    position: absolute; 
    top: 5px;         
    right: 5px;        
    width: 400px;      
    height: 80px;      
    background-color: rgba(231, 218, 227, 0.567); /* Transparent background */
    z-index: 1000;      
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    border-radius: 10px; 
    transition: box-shadow 0.3s ease-in-out;
    z-index: 500;
}

#box-atas-kanan-peta:hover {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5); /* Shadow effect on hover */
}

#kumpulan-sasar-info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    margin-bottom: 40px; 
}

/* dlm kotak info kumpulan sasar = "Kanak-Kanak" */
#jenis-kumpulan-text {
    display: inline-block;
    color: #633981; /* Text color */
    font-weight: 700;  
    padding: 1px 2px; 
    margin-right: 5px; 
    font-size: 15px; 
    width: 300px; 
    text-align: center;
}

/* gambar kumpulan sasar = "images/kid.png" */
#logo_kumpulan_sasar {
    width: 40px;
    height: 40px;
    padding: 1px;
}

/* kotak MALAYSIA */
#return-malaysia {
    position: absolute;
    bottom: 5px;
    right: 10px;
    display: flex;
    font-size: 10px;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 26px;
    background-color: #633981;
    color: azure;
    cursor: pointer;
    border-radius: 10px; 
}

#return-malaysia:hover {
    background-color: #df7001;
}

#return-icon {
    width: 10px;
    height: 10px;
    margin-left: 5px; 
    transition: transform 1s;
}

#return-malaysia:hover #return-icon {
    transform: rotate(-360deg);
}

/* btn-negeri (apa yg keluar kt kotak info bila Selected Negeri) */
.btn-negeri {
    position: absolute;  
    font-size: 10px;
    bottom: 5px;
    right: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 26px;
    background-color: #633981;
    color: azure;
    cursor: pointer;
    border-radius: 10px;
    white-space: nowrap; /* Prevent text wrapping */
    padding-right: 10px; 
    margin-right: 20px;
}

.btn-negeri:hover {
    background-color: #df7001;
}

/* Button for Daerah */
.btn-daerah {
    position: absolute;  
    font-size: 10px;
    bottom: 5px;
    right: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 26px;
    background-color: #633981;
    color: azure;
    cursor: pointer;
    border-radius: 10px;
    white-space: nowrap; 
    padding-right: 20px; 
    margin-right: 50px;
}

.btn-daerah:hover {
    background-color: #df7001;
}

/* Arrow Icon - Moved Outside the Box */
.arrow-icon {
    position: absolute;
    right: -20px; 
    width: 15px;
    height: 15px;
    transition: transform 5s;
}

/* arrow bergerak ke kanan bila hover kotak malaysia */
#return-malaysia:hover ~ .btn-negeri .arrow-icon {
    animation: moveRight 1s infinite;
}

/*  arrow bergerak ke kanan bila hover kotak negeri */
#selectedNegeriBox:hover ~ .btn-daerah .arrow-icon {
    animation: moveRight 1s infinite;
}

@keyframes moveRight {
    0% {
        transform: translateX(0); /* Start at original position */
    }
    50% {
        transform: translateX(10px); /* Move 10px to the right */
    }
    100% {
        transform: translateX(0); /* Return to original position */
    }
}
