.lottery-generator-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.lottery-title {
    text-align: center;
    margin-bottom: 20px;
}

.lottery-form {
    margin-bottom: 30px;
    text-align: center;
}

.lottery-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.lottery-form input {
    width: 100px;
    padding: 8px;
    margin-right: 10px;
}

.lottery-results {
    margin-top: 30px;
}

.lottery-loading {
    text-align: center;
    font-style: italic;
    margin: 20px 0;
    display: none;
}

.lottery-numbers-table {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 5px;
    margin-bottom: 30px;
}

.lottery-cell {
    border: 1px solid #ddd;
    aspect-ratio: 1;
    position: relative;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lottery-cell-number {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 12px;
}

.lottery-cell-frequency {
    font-size: 18px;
    font-weight: bold;
}

.lottery-top-numbers {
    margin-top: 30px;
}

.lottery-top-numbers h3 {
    text-align: center;
    margin-bottom: 15px;
}

.top-numbers-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

.top-numbers-table th, 
.top-numbers-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

.top-numbers-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

#new-generation-button {
    display: block;
    margin: 20px auto;
}