/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* BODY */
body {
    background: #f2f2f2;
}

/* TOPO / MENU */
.topo {
    background: linear-gradient(90deg, #ff5a00, #ff7a00);
    padding: 15px 0;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.menu a:hover {
    text-decoration: underline;
}

/* CONTAINER PADRÃO */
.container {
    max-width: 900px;
    margin: 40px auto;
    background: #ff5a00;
    padding: 40px;
    border-radius: 25px;
}

/* TÍTULOS */
.container h1,
.container h2 {
    color: #fff;
    margin-bottom: 10px;
}

.obs {
    color: #fff;
    margin-bottom: 20px;
}

/* FORMULÁRIO */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    color: #fff;
    font-weight: bold;
}

input,
select,
textarea {
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    outline: none;
}

textarea {
    resize: none;
    height: 120px;
}

/* BOTÃO */
button {
    margin-top: 20px;
    padding: 16px;
    background: #ffc107;
    color: #000;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}

/* TABELAS (RH / LISTA DE CANDIDATOS) */
table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

th {
    background: #ff5a00;
    color: #fff;
    padding: 12px;
    font-size: 14px;
}

td {
    padding: 10px;
    font-size: 13px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

tr:nth-child(even) {
    background: #f9f9f9;
}

a {
    color: #ff5a00;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* BOTÕES DE AÇÃO RH */
.btn {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.btn-aprovar {
    background: #28a745;
    color: #fff;
}

.btn-reprovar {
    background: #dc3545;
    color: #fff;
}

.btn-excluir {
    background: #6c757d;
    color: #fff;
}

/* DASHBOARD */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.card h3 {
    color: #ff5a00;
    margin-bottom: 10px;
}

.card span {
    font-size: 26px;
    font-weight: bold;
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .menu {
        flex-direction: column;
        gap: 10px;
    }

    .container {
        margin: 20px;
        padding: 25px;
    }

    table {
        font-size: 12px;
    }
}
