body {
    font-family: sans-serif;
    margin: 20px;
    background-color: #f4f4f4;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

#bilhete-container {
    display: flex;
    flex-wrap: wrap; 
    gap: 15px; 
    justify-content: center;
}

.bloco-milhar {
    width: 300px; 
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.segmento-centena {
    margin-bottom: 10px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 5px;
}

.segmento-centena:last-child {
    border-bottom: none;
}

.bilhete {
    display: inline-block;
    width: 25px; 
    text-align: center;
    padding: 3px 0;
    margin: 2px;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 10px;
    background-color: #e6ffe6; 
    transition: background-color 0.3s;
}

.bilhete:hover:not(.comprado) {
    background-color: #a0ffa0;
}

/* Bilhete Comprado (Vermelho) */
.comprado {
    background-color: #ffcccc; 
    color: #cc0000; 
    cursor: not-allowed;
    border-color: #cc0000;
    pointer-events: none; 
}

/* --- MODAIS --- */
.modal {
    display: none; 
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    position: relative;
    border-radius: 8px;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Estilo do Extrato/Bilhete para impressão */
.extrato {
    border: 2px solid #333;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.5;
    background-color: #fff;
}

.extrato h3 {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-top: 0;
}

@media print {
    body * {
        visibility: hidden;
    }
    #modal-extrato, #modal-extrato * {
        visibility: visible;
    }
    .modal-content {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
        width: 100%;
        max-width: none;
        border: none;
        box-shadow: none;
    }
    button, .close-button {
        display: none;
    }
}