/* ======= Estilo Geral ======= */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f1f4f8;
}

header {
    background: #1e40af;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
}

/* ======= Formulário ======= */
.form-section {
    background: #fff;
    padding: 20px;
    margin: 20px auto;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}

form button {
    background-color: #1e40af;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
}

form button:hover {
    background-color: #3b5bdb;
}

/* ======= Tabela ======= */
.table-section {
    width: 90%;
    margin: 20px auto;
    padding: 20px;
    max-width: 900px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

thead {
    background: #1e40af;
    color: white;
}

th, td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ccc;
}

tr:nth-child(even) {
    background: #f8f8f8;
}

/* ======= Situação de Aprovação/Reprovação ======= */
.aprovado {
    background: #d4edda;
    color: #155724;
}

.reprovado {
    background: #f8d7da;
    color: #721c24;
}

/* ======= Responsividade ======= */
@media (max-width: 600px) {
    form input, form button {
        font-size: 14px;
    }

    table {
        font-size: 14px;
    }

    th, td {
        padding: 8px;
    }
}
