/* Modern, simple, and tenant-color-adaptable styles */
:root {
    --color-primario: #3498db;
    --color-secundario: #2ecc71;
    --color-texto: #000000;
    --color-fondo: #ffffff;
}

body {
    background-color: var(--color-fondo);
    color: var(--color-texto);
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
}

.card {
    border-radius: 1rem;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
    border: none;
}

.card-header {
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 1rem 1rem 0 0;
}

.btn-primary, .btn-success, .btn-danger, .btn-secondary {
    border-radius: 2rem;
    font-weight: 500;
    padding-left: 1.5em;
    padding-right: 1.5em;
}

.table {
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
}

.form-group label {
    font-weight: 500;
    color: var(--color-primario);
}

input, select, textarea {
    border-radius: 0.5rem !important;
    border: 1px solid #e0e0e0 !important;
    padding: 0.5em 1em !important;
}

.alert-danger {
    border-radius: 0.5rem;
}

/* Dynamic color override via inline style in base.html */
