.lottery-draw-container {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.lottery-draw-container h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.current-draw {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.current-draw h2 {
    font-size: 28px;
    color: #e74c3c;
    margin: 10px 0;
}

.draw-numbers {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.ball {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.next-draw-info {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
}

.next-draw-info strong {
    color: #e74c3c;
}

.draw-history {
    margin-top: 20px;
}

.draw-history h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
}

.draw-history table {
    width: 100%;
    border-collapse: collapse;
}

.draw-history th {
    background: #f5f5f5;
    padding: 10px;
    text-align: left;
    font-weight: bold;
}

.draw-history td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.draw-history tr:last-child td {
    border-bottom: none;
}

.draw-history .ball {
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin-right: 5px;
}