/* estilo.css - Arquivo único de estilo para o sistema Curriculo do Instituto Pallade */

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f9fafb;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #ffffff;
    min-height: 100vh;
}

.header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.header img {
    height: 50px;
    margin-right: 15px;
}

.header h1 {
    color: #333333;
    margin: 0;
    font-size: 24px;
}

.filtro-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.filtro {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filtro input, .filtro select {
    padding: 8px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 14px;
}

.filtro button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    background-color: #10b981;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

.incluir-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    background-color: #10b981;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    min-width: 600px;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #dddddd;
}

th {
    background-color: #1f2937;
    color: #ffffff;
}

tr:nth-child(even) {
    background-color: #f1f5f9;
}

/* Formulário */
.formulario {
    max-width: 800px;
    margin: auto;
}

.formulario .campo {
    margin-bottom: 15px;
}

.formulario label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.formulario input, .formulario select, .formulario textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.botoes-formulario {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.botoes-formulario button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.salvar {
    background-color: #10b981;
    color: white;
}

.cancelar {
    background-color: #6b7280;
    color: white;
}

/* Botões de ação na tabela */
.botao {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    margin-right: 5px;
    font-size: 14px;
}

.botao-editar {
    background-color: #3b82f6;
}

.botao-excluir {
    background-color: #ef4444;
}

.botao-visualizar {
    background-color: #6b7280;
}

.titulo-formulario {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}


.titulo-formulario img {
    height: 50px;
    margin-right: 15px;
}

.titulo-formulario h1 {
    font-size: 24px;
    color: #333333;
    margin: 0;
}

/* Paginação */
.paginacao {
    text-align: center;
    margin-top: 10px;
}

.paginacao button {
    padding: 6px 12px;
    margin: 0 2px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    background-color: #ffffff;
    cursor: pointer;
}

.paginacao button:hover {
    background-color: #e5e7eb;
}

/* Responsividade */
@media (max-width: 768px) {
    .header h1 {
        font-size: 20px;
    }
    .filtro input, .filtro select, .filtro button, .incluir-btn {
        width: 100%;
    }
}

