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

.table-custom thead {
    background-color: radial-gradient(circle, #A020F0 30%, #B566FF 50%, #FFD700 80%, #C0C0C0 100%)
    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;
}

.draw-number {
    background-color: radial-gradient(circle, #A020F0 30%, #B566FF 50%, #FFD700 80%, #C0C0C0 100%)
    color: #fff;
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.2;
}

.highlight-number {
    color: #fff;
    border-radius: 10px;
    padding: 0.5em 1em; /* Adjust padding for spacing around the number */
    font-size: 4.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: blink 1s infinite;
    display: inline-flex; /* Adjusts width based on content */
    align-items: center; /* Vertically centers the text */
    justify-content: center; /* Horizontally centers the text */
}
@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;
}
