.badge-pulse {
    animation: pulse 0.8s ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.icon-xl {
    font-size: 64px;
    /* ikon besar untuk body modal */
}

.icon-lg {
    font-size: 32px;
    /* ikon sedang untuk header modal */
}

.userq-initials {
    width: 40px;
    /* kecilkan lebar */
    height: 40px;
    /* kecilkan tinggi */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    /* kecilkan ukuran huruf */
    background: #6a1b9a;
    color: #fff;
}
