.table-custom {
    border-radius: 10px;
    overflow: hidden;
    background: radial-gradient(circle, #A020F0 30%, #B566FF 50%, #FFD700 80%, #C0C0C0 100%)
}

.table-custom thead {
    background-color: #A020F0;
    color: #fff;
}

.table-custom tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.table-custom tbody tr:nth-child(odd) {
    background-color: #e9ecef;
}

.table-custom tbody tr:hover {
    background-color: #cfe2ff;
}

.table-custom td, .table-custom th {
    text-align: center;
    vertical-align: middle;
    border: 1px solid #dee2e6;
    padding: 12px;
}

.table-custom td, .table-custom th {
    border: 1px solid #dee2e6;
    word-wrap: break-word; /* Menghindari teks menumpuk */
    overflow: hidden; /* Menyembunyikan teks yang melampaui */
    text-overflow: ellipsis; /* Menambahkan titik-titik di akhir teks yang terlalu panjang */
    white-space: nowrap; /* Mencegah teks membungkus ke baris berikutnya */
}

.table-custom th {
    background: radial-gradient(circle, #A020F0 30%, #B566FF 50%, #FFD700 80%, #C0C0C0 100%) /* Warna latar belakang header */
    color: #fff; /* Warna teks header */
}

.custom-blue-bg {
    background-color: #A020F0;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.blink {
    animation: blink 1s step-start infinite;
}
                    /* Style for the h2 with background color and bold text */
.bg-custom {
    background: radial-gradient(circle, #A020F0 30%, #B566FF 50%, #FFD700 80%, #C0C0C0 100%)
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
}
.table .gradient-bg {
    background: radial-gradient(circle, #A020F0 30%, #B566FF 50%, #FFD700 80%, #C0C0C0 100%)
}
.table-custom-gradient {
    background: radial-gradient(circle, #A020F0 30%, #B566FF 50%, #FFD700 80%, #C0C0C0 100%)
}


