/* Tema Gerente Pro - fondo oscuro, acento teal */
:root {
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --accent: #10b981;
    --accent-hover: #14b8a6;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --border: #334155;
    --radius: 16px;
    --radius-sm: 12px;
}

body.gerente-pro-theme,
.gerente-pro-theme {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    min-height: 100vh;
}

body.gerente-pro-theme { padding-top: var(--nav-wrap-height, 70px); }

/* Tarjetas */
.gerente-pro-theme .card,
.card.gp-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    color: var(--text);
}

.gerente-pro-theme .card-header,
.card.gp-card .card-header {
    background: transparent;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.gerente-pro-theme .card-body,
.card.gp-card .card-body {
    color: var(--text);
}

/* Botones */
.gerente-pro-theme .btn-primary,
.btn-primary.gp-btn {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-dark);
}

.gerente-pro-theme .btn-primary:hover,
.btn-primary.gp-btn:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--bg-dark);
}

.gerente-pro-theme .btn-outline-primary,
.btn-outline-primary.gp-btn {
    border-color: var(--accent);
    color: var(--accent);
}

.gerente-pro-theme .btn-outline-primary:hover,
.btn-outline-primary.gp-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.gerente-pro-theme .btn-secondary,
.btn-outline-danger {
    border-color: var(--border);
    color: var(--text-muted);
}

.gerente-pro-theme .btn-secondary:hover,
.gerente-pro-theme .btn-outline-danger:hover {
    border-color: var(--accent);
    color: var(--text);
}

/* Formularios */
.gerente-pro-theme .form-control,
.gerente-pro-theme .form-select,
.form-control.gp-input {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    color: var(--text);
}

.gerente-pro-theme .form-control::placeholder,
.form-control.gp-input::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

.gerente-pro-theme .form-control:focus,
.gerente-pro-theme .form-select:focus {
    border-color: var(--accent);
    background: var(--bg-dark);
    color: var(--text);
}

.gerente-pro-theme label,
.gerente-pro-theme .form-label {
    color: var(--text-muted);
}

/* Tablas */
.gerente-pro-theme .table {
    color: var(--text);
}

.gerente-pro-theme .table thead th {
    background: var(--bg-card);
    border-color: var(--border);
    color: var(--text-muted);
}

.gerente-pro-theme .table td,
.gerente-pro-theme .table th {
    border-color: var(--border);
}

.gerente-pro-theme .table-striped tbody tr:nth-of-type(odd) {
    background: rgba(30, 41, 59, 0.5);
}

/* Texto y enlaces */
.gerente-pro-theme .text-muted { color: var(--text-muted); }
.gerente-pro-theme a:not(.nav-links a) { color: var(--accent); }
.gerente-pro-theme a:hover:not(.nav-links a) { color: var(--accent-hover); }

/* Alertas */
.gerente-pro-theme .alert-success {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--accent);
    color: var(--text);
}

.gerente-pro-theme .alert-danger,
.gerente-pro-theme .alert-warning {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    color: var(--text);
}
