/* ARQUIVO: style.css */
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; margin: 0; background-color: #f8f9fa; color: #212529; }
.navbar { background-color: #343a40; padding: 0 1rem; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.nav-left { display: flex; align-items: center; }
.nav-logo { max-height: 40px; max-width: 150px; width: auto; height: auto; object-fit: contain; margin-right: 1.5rem; }
.navbar a { color: white; text-decoration: none; margin-right: 1.5rem; font-weight: 500; padding: 20px 0; }
.navbar a.logo-link { padding: 0; }
.navbar a:hover, .navbar a.active { color: #17a2b8; }
.nav-right { display: flex; align-items: center; }
.navbar .logout { margin-right: 0; }
.container { max-width: 1200px; margin: 2rem auto; padding: 2rem; background: white; border-radius: 8px; box-shadow: 0 0 15px rgba(0,0,0,0.07); }
h1, h2 { color: #495057; border-bottom: 2px solid #dee2e6; padding-bottom: 0.5rem; margin-bottom: 1.5rem; }
table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
th, td { padding: 12px 15px; border: 1px solid #dee2e6; text-align: left; vertical-align: middle; }
th { background-color: #e9ecef; font-weight: 600; }
tr:nth-child(even) { background-color: #f8f9fa; }
a { color: #007bff; text-decoration: none; }
a:hover { text-decoration: underline; }
.action-links a { margin-right: 10px; }
.message { padding: 1rem; margin-bottom: 1.5rem; border-radius: 5px; color: #fff; }
.success { background-color: #28a745; }
.error { background-color: #dc3545; }
form { margin-top: 2rem; padding: 1.5rem; border: 1px solid #dee2e6; border-radius: 5px; background-color: #f8f9fa; }
form label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
form input[type="text"], form input[type="password"], form input[type="time"], form input[type="date"], form select { width: 100%; padding: 10px; margin-bottom: 1rem; border-radius: 4px; border: 1px solid #ced4da; box-sizing: border-box; }
form button { background-color: #007bff; color: white; padding: 10px 15px; border: none; font-size: 16px; cursor: pointer; border-radius: 5px; }
form button:hover { background-color: #0056b3; }
.form-inline { display: flex; align-items: flex-end; gap: 1rem; }
.form-inline .form-group { flex-grow: 1; margin-right: 0; }
.form-inline button { flex-shrink: 0; }
.filter-form .form-row { display: flex; gap: 1rem; align-items: flex-end; }