body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-left: 5px;
    margin-right: 5px;
}

.table-container {
    position: relative;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 10px; 
    z-index: 0;
    overflow: hidden; 
}

.table-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background: linear-gradient(90deg, #ce0000, #870000);
    padding: 3px;
    border-radius: 10px; 
}

.table-container::after {
    content: '';
    position: absolute;
    top: 5px; 
    left: 5px;
    right: 5px;
    bottom: 5px;
    background-color: #fff;
    border-radius: 7px; 
    z-index: -1;
}

.header {
    background: linear-gradient(to bottom, #ce0000, #870000);
    color: white;
    font-weight: bold;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    font-size: 16px;
}

.logo {
    margin: 20px 0;
}

.prize-section {
    margin-bottom: 20px;
}

.prize-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.prize {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.prize-title {
    background: linear-gradient(to bottom, #ce0000, #870000);
    color: white;
    padding: 20px 14px;
    border-radius: 5px;
    min-width: 110px;
    font-weight: bold;
    font-size: 13px;
    width: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 23px;
}

.prize-numbers {
    display: flex;
    gap: 5px;
}

.prize-numbers span {
    background-color: #e0e0e0;
    padding: 10px;
    border-radius: 5px;
    font-size: 18px;
}

.prize-list {
    background: linear-gradient(to bottom, #ce0000, #870000);
    color: white;
    padding: 5px;
    font-weight: bold;
    margin-bottom: 5px;
    border-radius: 10px;
    display: flex;          
    justify-content: center; 
    align-items: center;      
    min-height: 25px;       
    text-align: center;       
}

.prize-numbers-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}

.prize-numbers-list-sgp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}
.prize-numbers-list-sgp-1 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    
}

.prize-numbers-list-sgp-1-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}

.prize-numbers-list-sdy {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}



.footer {
    background: linear-gradient(to bottom, #ce0000, #870000);
    margin-top: 10px;
    font-size: 14px;
    height: auto;
    border-radius: 0px 0px 10px 10px;
    padding-top: 2%;
    padding-bottom: 2%;
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.borderr {
    background-color: #d9d9d9;
    border-radius: 5px;
    min-height: 20px;
    display: flex;             
    justify-content: center;   
    align-items: center;   
    min-height: 25px;    
    text-align: center; 
}

.draw-number .ball {
    display: inline-block;
    background: radial-gradient(circle at 65% 15%, #fff 1px, #89000052 1%, #bd0000 60%, #4f0000 100%);
    color: white;
    min-width: 30px !important;
    min-height: 30px !important;
    border-radius: 50%;
    line-height: inherit;
    margin: 4px !important;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    transition: width 0.3s, height 0.3s, font-size 0.3s, line-height 0.3s;
}

.draw-number {
    background-color: #d9d9d9;
    border-radius: 5px;
    margin-left: 4px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    display: flex;
    min-width: 140px;
    flex-wrap: nowrap;
    justify-content: center;
}

.draw-number .loading-ball {
    background: none !important;
    position: relative;
    border: 3px solid #f3f3f3;
    border-top: 3px solid rgb(146, 0, 0);
    border-radius: 50%;
    color: rgb(146, 0, 0);
    width: 20px;
    height: 20px;
    padding: 4px;
    animation: spin 1s linear infinite;
}

.hidden-text {
    visibility: hidden;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .draw-number .ball {
        width: 25px !important;
        height: 25px !important;
        line-height: 30px !important;
        font-size: 16px !important;
        margin: 3px !important;
    }
    .prize-title {
        padding: 20px 60px !important;

    }

    .draw-number {
        padding-left: 3px !important;
        padding-right: 3px !important;
    }
}

@media (max-width: 480px) {
    .draw-number .ball {
        width: 26px !important;
        height: 26px !important;
        line-height: 29px !important;
        font-size: 14px !important;
        margin: 3px !important;
    }

.prize-title { 
        padding: 20px 25px !important;
    }
    
.draw-number {
        padding-left: 5px !important;
        padding-top: 2px !important;
        padding-right: 5px !important;
        padding-bottom: 2px !important;
    }
    
}