/* Lotto Theme Based on Yellow Background */
.lotto-theme {
    background-color: rgb(255, 213, 0); /* Yellow background */
    color: #333333; /* Dark Gray text color for readability */
    font-family: Arial, sans-serif;
}

.lotto-theme h2,
.lotto-theme p,
.lotto-theme button {
    color: #fff; /* Ensure text and button color is white */
}

/* Lotto Section Styling */
.bg-lotto {
    background-color: rgb(255, 213, 0); /* Yellow background */
    padding: 50px 0;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.text-center {
    text-align: center;
}

.lotto-h1 {
    color: #003366; /* Dark Blue color for heading */
    font-size: 2rem;
}

.lotto-p {
    color: #003366; /* Dark Blue for paragraph */
    font-size: 1.2rem;
}

.lotto-button {
    background-color: #0052cc; /* Dark Blue button */
    color: #fff;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.lotto-button:hover {
    background-color: #003366; /* Slightly darker blue on hover */
}

.lotto-button:active {
    transform: translateY(2px);
}

/* Lotto Message Styling */
.lotto-message {
    text-align: center; /* Center-align text */
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #003366; /* Dark Blue */
}

.lotto-message h3 {
    color: #003366; /* Dark Blue */
    font-size: 1.5rem;
}

.lotto-message p {
    font-size: 1.2rem;
    color: #333333; /* Dark gray for numbers */
}

/* Lotto History Styling */
.lotto-history {
    margin-top: 40px;
}

.lotto-history ul {
    list-style-type: none;
    padding: 0;
}

.lotto-history li {
    font-size: 1.2rem;
    background-color: #e3e3e3; /* Slightly darker gray for history */
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
}
