.login-container {
    max-width: 400px;
    margin: 80px auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    text-align: center;
}
.login-container img { margin-bottom: 20px; }
.login-container h1 { font-size: 24px; margin-bottom: 24px; }

.dashboard-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--latam-red);
}
.btn-logout {
    background: var(--latam-dark);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}
.btn-agregar {
    background: var(--latam-red);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    padding: 12px;
    border: 1px solid var(--latam-border);
    text-align: left;
    font-size: x-small;;
}
th {
    background: var(--latam-gray);
    font-weight: 700;
}
.btn-editar, .btn-eliminar {
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    margin: 2px;
}
.btn-editar { background: #2196F3; color: white; }
.btn-eliminar { background: #f44336; color: white; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.form-grid .form-group {
    margin-bottom: 0;
}
.form-actions {
    grid-column: 1 / -1;
    text-align: right;
}
.btn-volver {
    background: #e0e0e0;
    color: #333;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}
@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}