/* Supaya footer selalu di bawah */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}
/* Floating WhatsApp Button */
.wa-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
}

.wa-float:hover {
    transform: scale(1.1);
    background-color: #20b358;
    color: #fff;
}
/* Tambahkan CSS ini di file CSS Anda untuk tampilan yang lebih rapi */
.card-list-scroll {
    max-height: 150px; /* Atur ketinggian maksimum daftar */
    overflow-y: auto; /* Aktifkan scroll vertikal jika konten melebihi max-height */
    padding-right: 10px; /* Memberi ruang agar scrollbar tidak menempel */
}

/* Opsi tambahan untuk memastikan kartu benar-benar memiliki tinggi yang sama di semua layar */
.row.g-4 > [class*='col-'] > .card.h-100 {
    display: flex;
    flex-direction: column;
}