/* Daily Numbers Styles */
.daily-numbers-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.daily-number {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-width: 120px;
}

.daily-number .number {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.daily-number .draw-time {
    font-size: 14px;
    color: #666;
}

.next-update {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}
