.premium-page {
    font-family: var(--fp-font-family);
    background-color: #f8fafc;
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 2rem;
}

.premium-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.04), 0 4px 6px -4px rgba(15, 23, 42, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.06), 0 4px 6px -4px rgba(15, 23, 42, 0.02);
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.icon-box-primary {
    background: rgba(30, 49, 199, 0.08);
    color: #1e31c7;
}
.icon-box-success {
    background: rgba(0, 164, 139, 0.1);
    color: #00a48b;
}

.premium-title {
    font-family: var(--fp-font-family-title);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.premium-label {
    font-family: var(--fp-font-family-subtitle);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.premium-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.premium-input {
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.premium-input:focus {
    border-color: #1e31c7;
    box-shadow: 0 0 0 4px rgba(30, 49, 199, 0.1);
    outline: none;
}

.premium-input-group {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.premium-input-group:focus-within {
    border-color: #1e31c7;
    box-shadow: 0 0 0 4px rgba(30, 49, 199, 0.1);
}

.premium-input-group .form-control {
    border: none;
    padding: 0.75rem 1rem;
    background: transparent;
}

.premium-input-group .form-control:focus {
    box-shadow: none;
}

.premium-input-group .input-group-text {
    border: none;
    background: #f8fafc;
    color: #64748b;
}

.premium-btn {
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all 0.2s ease;
}

.premium-btn-primary {
    background: linear-gradient(135deg, #1e31c7 0%, #3044d6 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 12px rgba(30, 49, 199, 0.25);
}

.premium-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(30, 49, 199, 0.35);
    background: linear-gradient(135deg, #2539d0 0%, #384ce0 100%);
    color: white;
}

.premium-btn-secondary {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.premium-btn-secondary:hover {
    background: #f8fafc;
    color: #0f172a;
}

.premium-alert {
    border-radius: 16px;
    border: none;
    background: rgba(30, 49, 199, 0.04);
    border-left: 4px solid #1e31c7;
    padding: 1.25rem;
}

.premium-switch {
    width: 3.5rem !important;
    height: 1.75rem !important;
    background-color: #cbd5e1;
    border-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.2s;
}
.premium-switch:checked {
    background-color: #00a48b !important;
    border-color: #00a48b !important;
}
.premium-switch:focus {
    box-shadow: 0 0 0 4px rgba(0, 164, 139, 0.2) !important;
}

.premium-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.badge-soft-secondary {
    background: #f1f5f9;
    color: #475569;
}

/* Badges pill de estado/rol para datagrids admin (compartidos) */
.badge-pill-success,
.badge-pill-danger,
.badge-pill-warning,
.badge-pill-muted {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0.30rem 0.80rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
}
.badge-pill-success {
    background: rgba(0, 164, 139, 0.10);
    color: #00a48b;
    border: 1px solid rgba(0, 164, 139, 0.20);
}
.badge-pill-danger {
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.18);
}
.badge-pill-warning {
    background: rgba(234, 179, 8, 0.10);
    color: #b45309;
    border: 1px solid rgba(234, 179, 8, 0.20);
}
.badge-pill-muted {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}
