/* Custom CSS untuk mengubah warna tombol */
.btn-primary {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #c82333 !important;
    border-color: #bd2130 !important;
}

/* Memastikan badge primary juga berwarna merah */
.badge.bg-primary {
    background-color: #dc3545 !important;
}

/* Memastikan text-primary juga berwarna merah */
.text-primary {
    color: #dc3545 !important;
}

/* Memastikan border-primary juga berwarna merah */
.border-primary {
    border-color: #dc3545 !important;
}