body{
    margin:0;
    padding:20px;
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    color:#333;
}

.box{
    max-width:900px;
    margin:0 auto;
}

/* ===========================
   CABEÇALHO
=========================== */

.header{
    text-align:center;
    margin-bottom:25px;
}

.logo-topo{
    max-height:90px;
    width:auto;
}

.header h1{
    margin:10px 0 0;
    color:#96C121;
    font-size:30px;
    font-weight:bold;
}

/* ===========================
   FORMULÁRIO
=========================== */

form{
    width:100%;
    background:#fff;
    padding:20px;
    border-radius:6px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-bottom:15px;
}

input,
textarea{
    width:100%;
    padding:8px 10px;
    box-sizing:border-box;
    border:1px solid #ccc;
    border-radius:4px;
    font-size:14px;
}

input:focus,
textarea:focus{
    outline:none;
    border-color:#96C121;
}

textarea{
    min-height:100px;
    resize:vertical;
    margin-top:15px;
}

#pesquisa{
    margin-bottom:15px;
}

/* ===========================
   TABELA
=========================== */

table{
    width:100%;
    border-collapse:collapse;
}

th,
td{
    border:1px solid #ddd;
    padding:8px;
}

th{
    background:#96C121;
    color:#fff;
    text-align:left;
    font-weight:bold;
}

tbody tr:nth-child(even){
    background:#fafafa;
}

tbody tr:hover{
    background:#f4f9e8;
}

.bio{
    width:70px;
    text-align:center;
}

.bio-badge{
    display:inline-block;
    background:#96C121;
    color:#fff;
    padding:3px 10px;
    border-radius:20px;
    font-size:11px;
    font-weight:bold;
}

td input[type="number"]{
    width:60px;
    text-align:center;
}

/* ===========================
   BOTÃO
=========================== */

button{
    display:block;
    margin:25px auto 0;
    width:250px;
    padding:12px;
    border:none;
    border-radius:5px;
    background:#96C121;
    color:#fff;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
}

button:hover{
    background:#7ea61b;
}

/* ===========================
   RESPONSIVO
=========================== */

@media (max-width:700px){

    body{
        padding:10px;
    }

    .grid{
        grid-template-columns:1fr;
    }

    .logo-topo{
        max-height:70px;
    }

    .header h1{
        font-size:24px;
    }

    form{
        padding:15px;
    }

    table{
        font-size:13px;
    }

    td input[type="number"]{
        width:55px;
    }

    button{
        width:100%;
    }

}