.resultado-loteria {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
    margin: 30px auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.megasena .lottery-number {
    border-color: #219653;
    color: #219653;
}

.quina .lottery-number {
    border-color: #260085;
    color: #260085;
}

.lotofacil .lottery-number {
    border-color: #930089;
    color: #930089;
}

.maismilionaria .lottery-number {
    border-color: #2E3078;
    color: #2E3078;
}

.lottery-header {
    padding: 10px;
    color: #fff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.megasena .lottery-header {
    background-color: #219653;
}

.quina .lottery-header {
    background-color: #260085;
}

.lotofacil .lottery-header {
    background-color: #930089;
}

.maismilionaria .lottery-header {
    background-color: #2E3078;
}

.maismilionaria .lottery-numbers {
    flex-direction: column;
}

.lottery-header h2 {
    margin: 0;
    font-size: 24px;
}

.lottery-header p {
    margin: 5px 0 0;
    font-size: 14px;
}

.lottery-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.lottery-number {
    width: 40px;
    height: 40px;
    border: 2px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}

.lottery-acumulado {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}

.grid-lotofacil {
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 10px;
    justify-content: center;
}

.linha-maismilionaria {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.linha-trevos {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.trevo {
    background-color: #FFD700;
    color: black;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-left: 5px;
}

/* Tabela */
.tabela-premios {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.tabela-premios th,
.tabela-premios td {
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 14px;
}

.tabela-premios thead {
    background-color: #f5f5f5;
}


