.custom-bg-blue {
    background-color: #007bff; /* Warna biru kustom */
    color: white;
    max-width: 300px; /* Tentukan lebar maksimum untuk kartu */
}

.custom-bg-orange {
    background-color: #ff6600; /* Warna oranye kustom */
    color: white;
    max-width: 300px; /* Tentukan lebar maksimum untuk kartu */
}

.custom-bg-purple {
    background-color: #6f42c1; /* Warna ungu kustom */
    color: white;
    max-width: 300px; /* Tentukan lebar maksimum untuk kartu */
}

.custom-bg-green{
    background-color: #00aa13; /* Warna hijau kustom */
    color: white;
max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.custom-bg-red{
    background-color: #d92226; /* Warna merah kustom */
    color: white;
max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.card-deck {
    display: flex;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Ubah sesuai kebutuhan */
    gap: 1rem; /* Spasi antar card */
    margin-top: 1rem;
}

