/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Estilo do corpo */
body {
    background-color: #f2f2f2;
    color: #333;
    padding: 20px;
}

/* Títulos */
h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #004080;
}

/* Formulários */
form {
    max-width: 500px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
}

form input[type="text"],
form input[type="password"],
form input[type="email"],
form input[type="date"],
form input[type="number"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
}

form input[type="submit"] {
    background-color: #004080;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

form input[type="submit"]:hover {
    background-color: #0066cc;
}

/* Tabela */
table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    margin-top: 20px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
}

table th {
    background: #004080;
    color: #fff;
    padding: 12px;
    text-align: left;
}

table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

table tr:hover {
    background: #f1f1f1;
}

/* Links */
a {
    text-decoration: none;
    color: #004080;
    font-weight: bold;
}

a:hover {
    color: #0066cc;
}

/* Botões de ação */
.acao {
    display: inline-block;
    padding: 6px 12px;
    margin: 2px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.btn-editar {
    background-color: #ffcc00;
    color: #000;
}

.btn-editar:hover {
    background-color: #e6b800;
}

.btn-excluir {
    background-color: #cc0000;
    color: #fff;
}

.btn-excluir:hover {
    background-color: #990000;
}
.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo-container img {
    max-width: 180px; /* tamanho da logo */
    height: auto;
    
}
.menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.menu-btn {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease;
    width: 220px;
    text-align: center;
}

.menu-btn:hover {
    background: #45a049;
}

.btn-sair {
    background: #e74c3c;
}

.btn-sair:hover {
    background: #c0392b;
}
