    body {
        display: flex;
        flex-direction: column;
        font-family: Arial, sans-serif;
        /* padding: 20px; */
        margin: 0 auto;
        margin-top: 90px;
        margin-bottom: 70px;
        background-color: #fff;
    }

    h1 {
        text-align: center;
        margin-bottom: 20px;
    }

    #bilhete {
        display: grid;
        width: 100px;
        margin: 0 auto;
        margin-top: 10px;
        grid-template-columns: repeat(5, 40px);
        grid-gap: 15px;
        justify-content: center;
        margin-bottom: 20px;
    }

    .numero {
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border: 1px solid #ccc;
        border-radius: 4px;
        cursor: pointer;
        user-select: none;
        font-weight: bold;
        background: #f0f0f0;
        transition: background-color 0.3s;
    }

    .numero.marcado {
        background-color: #4caf50;
        color: white;
        border-color: #388e3c;
    }

    #uploadLabel {
        display: inline-block;
        margin: 0 auto;
        text-align: center;
        margin-top: 10px;
        padding: 8px 12px;
        background-color: #2196f3;
        color: white;
        width: 300px;
        border-radius: 4px;
        cursor: pointer;
        user-select: none;
    }

    #uploadInput {
        display: none;
    }

    #btnConferir,
    #btnLimpar {
        display: inline-block;
        margin: 0 auto;
        margin-top:10px ;
        padding: 10px 20px;
        font-size: 16px;
        background-color: #007bff;
        color: white;
        width: 300px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s;
    }

    #btnConferir:hover,
    #btnLimpar:hover {
        background-color: #0056b3;
    }

    #btnLimpar {
        background-color: #f44336;
    }

    #btnLimpar:hover {
        background-color: #c62828;
    }

    #resultadoInfo {
        margin-top: 15px;
        font-weight: bold;
        text-align: center;
    }

    #jogosContainer {
        max-height: 300px;
        overflow-y: auto;
        border: 1px solid #ddd;
        padding: 10px;
        margin-top: 10px;
        background-color: #fafafa;
        border-radius: 4px;
    }

    .jogo {
        padding: 6px 10px;
        margin-bottom: 6px;
        border-radius: 4px;
        background-color: #f9f9f9;
        font-weight: bold;
    }

    .jogo.acertos {
        background-color: #d1ffd1;
        border: 1px solid #4caf50;
    }