body.page {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6f9;
    margin: 0;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.title {
    margin-bottom: 10px;
}

.welcome {
    color: #555;
    margin-bottom: 20px;
}

.actions {
    margin-bottom: 20px;
}

.menu {
    list-style: none;
    padding: 0;
}

.menu li {
    margin: 10px 0;
}

.menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: bold;
    padding: 10px;
    display: block;
    border-radius: 5px;
    background: #ecf0f1;
    transition: 0.2s;
}

.menu a:hover {
    background: #d0d7de;
}

.btn {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.btn-success {
    background: #27ae60;
    color: white;
}

.btn-success:hover {
    background: #219150;
}

.logout {
    margin-top: 30px;
    text-align: right;
}

.logout a {
    color: #c0392b;
    font-weight: bold;
    text-decoration: none;
}

.container.small {
    max-width: 400px;
    margin: 80px auto;
}

.form {
    display: flex;
    flex-direction: column;
}

.input {
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
}

.error {
    color: #e74c3c;
    margin-bottom: 10px;
}
.title {
    margin-bottom: 20px;
}

.top-actions {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.table th, .table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.table th {
    background: #f4f6f8;
}

.actions {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.inline-form {
    display: inline;
}

.btn-warning {
    background: #f39c12;
    color: white;
}

.btn-danger {
    background: #e74c3c;
    color: white;
}

.link {
    text-decoration: none;
    color: #555;
}
.form-card {
    background: white;
    padding: 25px;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-card input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-card label {
    font-weight: bold;
    margin-top: 5px;
}
.form-card select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.title {
    margin-bottom: 20px;
}

.top-actions {
    margin-bottom: 15px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.table th {
    background-color: #f4f4f4;
}

.btn {
    padding: 6px 10px;
    border-radius: 4px;
    text-decoration: none;
    background: #e0e0e0;
    color: black;
    margin: 2px;
    display: inline-block;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-danger {
    background: #dc3545;
    color: white;
}
.card {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
    max-width: 400px;
}

.form input {
    width: 100%;
    padding: 8px;
    margin: 8px 0 12px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}
/* ===== NAVBAR WP SISTEMAS ===== */

.navbar {
    background: #1f2937;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.logo-sistema {
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    margin-right: 30px;
}

.nav-card {
    background: #374151;
    color: #fff;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 6px;
    min-width: 95px;
    text-align: center;
    font-size: 13px;
    transition: 0.2s;
}

.nav-card:hover {
    background: #4b5563;
    transform: scale(1.05);
}
