* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', 'sans-serif';
}

body {
    background-color: #e7e7e7;
    padding-top: 100px;
}

.container {
    max-width: 960px;
    width: 100%;
    margin: 0px auto ;
}

header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 40px;
    font-weight: bold;
}

header img {
    height: 36px;
    margin-right: 16px;
}

i {
    font-size: 30px;
    padding-right: 30px;
    cursor: pointer;
    color: #fdd128;
    user-select: none;

}

i:hover {
    color: #bb9a16;
}

.modal {
  display: none; /* escondido por padrão */
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
  background-color: rgba(0, 0, 0, 0.5); /* fundo escuro semi-transparente */
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.close {
    float: right;
    font-size: 28px;
    cursor: pointer;
    color: #888;
}

.close:hover {
    color: #000;
}

table {
    width: 100%;
    user-select: none;
}

table th {
    border-bottom:  2px solid #000;
    padding: 26px;
    font-size: 24px;
    font-weight: bold;

}

table td {
    text-align: center;
    font-size: 16px;
    padding: 8px 0px;
    border-bottom: solid 1px rgba(0, 0, 0,0.2);
}

tfoot td {
    font-size: 20px;
    font-weight: bold;
    padding-top: 12px;
    border-bottom: none;
}

table button {
    background-color: #fdd128;
    color: #000;
    border: none;
    font-size: 20px;
    font-weight: bold;
    padding: 4px 16px;
    cursor: pointer;
    border-radius: 10px;
}



table button:hover {
    background-color: #fddf66;
}
