/**
 * MP-GM Cards - Meu Pmoc Glassmorphism CSS Component
 * Glassmorphism Light Theme for Card Lists
 * 
 * Prefix: mp-gm- (Meu Pmoc Glassmorphism)
 * Used by: NewMobilePlanoClienteCardList and similar card-based lists
 */

/* ==================== CSS VARIABLES ==================== */
.mp-gm-wrapper {
    --mp-gm-primary: #2b45fb;
    --mp-gm-secondary: #018cfb;
    --mp-gm-accent: #00b0e4;
    --mp-gm-ink: #4a505c;
    --mp-gm-success: #10b981;
    --mp-gm-warning: #f59e0b;
    --mp-gm-danger: #ef4444;
    --mp-gm-purple: #8b5cf6;
    --mp-gm-orange: #f97316;
    --mp-gm-churn: #dc2626;
    --mp-gm-radius: 16px;
    --mp-gm-radius-sm: 10px;
    --mp-gm-radius-lg: 24px;
    --mp-gm-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --mp-gm-min-width-btn: 36px;
}

/* ==================== MOBILE OVERFLOW PREVENTION ==================== */
/* Base rules to prevent horizontal scroll on mobile devices */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* ==================== RESET & BASE ==================== */
#builder-layout div:not(.beditorcss).container-live {
    padding-top: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
}

.mp-gm-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mp-gm-wrapper {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 25%, #e0f2fe 50%, #f0fdf4 75%, #fef3c7 100%);
    background-attachment: fixed;
    color: var(--mp-gm-ink);
    padding: 40px 20px;
    min-height: calc(100vh - 60px);
    overflow-x: hidden;
    position: relative;
    max-width: 100%;
    box-sizing: border-box;
}

/* Background light effects */
.mp-gm-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(14, 165, 233, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ==================== CONTAINER ==================== */
.mp-gm-wrapper .mp-gm-container {
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

/* ==================== HEADER ==================== */
.mp-gm-wrapper .mp-gm-header {
    text-align: center;
    margin-bottom: 40px;
}

.mp-gm-wrapper .mp-gm-badge {
    display: inline-block;
    background: rgba(43, 69, 251, 0.1);
    color: var(--mp-gm-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 2px solid rgba(43, 69, 251, 0.2);
}

.mp-gm-wrapper .mp-gm-header h1 {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--mp-gm-primary), var(--mp-gm-secondary), var(--mp-gm-accent));
    -webkit-background-clip: text;
    background: linear-gradient(135deg, var(--mp-gm-primary), var(--mp-gm-secondary));
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.mp-gm-wrapper .mp-gm-header p {
    font-size: 16px;
    color: #64748b;
    font-weight: 600;
}

/* ==================== STATS BAR ==================== */
.mp-gm-wrapper .mp-gm-stats-bar {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.mp-gm-wrapper .mp-gm-stat-item {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 15px 25px;
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(31, 38, 135, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    min-width: 160px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.mp-gm-wrapper .mp-gm-stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.8);
    box-shadow:
        0 20px 50px rgba(31, 38, 135, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(99, 102, 241, 0.3);
}

.mp-gm-wrapper .mp-gm-stat-item i {
    font-size: 24px;
}

/* Stat item color variants - Generic color classes for reusability */
.mp-gm-wrapper .mp-gm-stat-item.verde i { color: var(--mp-gm-success); }
.mp-gm-wrapper .mp-gm-stat-item.amarelo i { color: var(--mp-gm-warning); }
.mp-gm-wrapper .mp-gm-stat-item.laranja i { color: var(--mp-gm-orange); }
.mp-gm-wrapper .mp-gm-stat-item.vermelho i { color: var(--mp-gm-danger); }
.mp-gm-wrapper .mp-gm-stat-item.azul i { color: var(--mp-gm-primary); }
.mp-gm-wrapper .mp-gm-stat-item.roxo i { color: var(--mp-gm-purple); }
.mp-gm-wrapper .mp-gm-stat-item.azul-claro i { color: var(--mp-gm-accent); }
.mp-gm-wrapper .mp-gm-stat-item.ciano i { color: #06b6d4; }
.mp-gm-wrapper .mp-gm-stat-item.cinza i { color: #64748b; }
.mp-gm-wrapper .mp-gm-stat-item.rosa i { color: #ec4899; }
.mp-gm-wrapper .mp-gm-stat-item.indigo i { color: #6366f1; }

/* Stat item hover border colors */
.mp-gm-wrapper .mp-gm-stat-item.verde:hover { border-color: rgba(16, 185, 129, 0.4); }
.mp-gm-wrapper .mp-gm-stat-item.amarelo:hover { border-color: rgba(245, 158, 11, 0.4); }
.mp-gm-wrapper .mp-gm-stat-item.laranja:hover { border-color: rgba(249, 115, 22, 0.4); }
.mp-gm-wrapper .mp-gm-stat-item.vermelho:hover { border-color: rgba(239, 68, 68, 0.4); }
.mp-gm-wrapper .mp-gm-stat-item.azul:hover { border-color: rgba(43, 69, 251, 0.4); }
.mp-gm-wrapper .mp-gm-stat-item.roxo:hover { border-color: rgba(139, 92, 246, 0.4); }
.mp-gm-wrapper .mp-gm-stat-item.azul-claro:hover { border-color: rgba(0, 176, 228, 0.4); }
.mp-gm-wrapper .mp-gm-stat-item.ciano:hover { border-color: rgba(6, 182, 212, 0.4); }
.mp-gm-wrapper .mp-gm-stat-item.cinza:hover { border-color: rgba(100, 116, 139, 0.4); }
.mp-gm-wrapper .mp-gm-stat-item.rosa:hover { border-color: rgba(236, 72, 153, 0.4); }
.mp-gm-wrapper .mp-gm-stat-item.indigo:hover { border-color: rgba(99, 102, 241, 0.4); }

/* Stat item hover top gradient bar (::before) */
.mp-gm-wrapper .mp-gm-stat-item.verde:hover::before { background: linear-gradient(90deg, var(--mp-gm-success), #059669, var(--mp-gm-success)); opacity: 1; }
.mp-gm-wrapper .mp-gm-stat-item.amarelo:hover::before { background: linear-gradient(90deg, var(--mp-gm-warning), #d97706, var(--mp-gm-warning)); opacity: 1; }
.mp-gm-wrapper .mp-gm-stat-item.laranja:hover::before { background: linear-gradient(90deg, var(--mp-gm-orange), #ea580c, var(--mp-gm-orange)); opacity: 1; }
.mp-gm-wrapper .mp-gm-stat-item.vermelho:hover::before { background: linear-gradient(90deg, var(--mp-gm-danger), #dc2626, var(--mp-gm-danger)); opacity: 1; }
.mp-gm-wrapper .mp-gm-stat-item.azul:hover::before { background: linear-gradient(90deg, var(--mp-gm-primary), var(--mp-gm-secondary), var(--mp-gm-primary)); opacity: 1; }
.mp-gm-wrapper .mp-gm-stat-item.roxo:hover::before { background: linear-gradient(90deg, var(--mp-gm-purple), #7c3aed, var(--mp-gm-purple)); opacity: 1; }
.mp-gm-wrapper .mp-gm-stat-item.azul-claro:hover::before { background: linear-gradient(90deg, var(--mp-gm-accent), var(--mp-gm-secondary), var(--mp-gm-accent)); opacity: 1; }
.mp-gm-wrapper .mp-gm-stat-item.ciano:hover::before { background: linear-gradient(90deg, #06b6d4, #0891b2, #06b6d4); opacity: 1; }
.mp-gm-wrapper .mp-gm-stat-item.cinza:hover::before { background: linear-gradient(90deg, #64748b, #475569, #64748b); opacity: 1; }
.mp-gm-wrapper .mp-gm-stat-item.rosa:hover::before { background: linear-gradient(90deg, #ec4899, #db2777, #ec4899); opacity: 1; }
.mp-gm-wrapper .mp-gm-stat-item.indigo:hover::before { background: linear-gradient(90deg, #6366f1, #4f46e5, #6366f1); opacity: 1; }

.mp-gm-wrapper .mp-gm-stat-item .mp-gm-stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    transition: all 0.3s ease;
}

.mp-gm-wrapper .mp-gm-stat-item .mp-gm-stat-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

.mp-gm-wrapper .mp-gm-stat-item .mp-gm-stat-valor {
    font-size: 12px;
    color: var(--mp-gm-success);
    font-weight: 700;
}

.mp-gm-wrapper .mp-gm-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--mp-gm-primary), var(--mp-gm-secondary), var(--mp-gm-success));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mp-gm-wrapper .mp-gm-stat-item:hover::before {
    opacity: 1;
}

.mp-gm-wrapper .mp-gm-stat-item:hover .mp-gm-stat-number {
    transform: scale(1.1);
}

/* ==================== FILTERS CARD ==================== */
.mp-gm-wrapper .mp-gm-filters-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 30px;
    box-shadow:
        0 8px 32px rgba(31, 38, 135, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.7);
    overflow: visible;
    position: relative;
    z-index: 1;
}

.mp-gm-wrapper .mp-gm-filters-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: end;
}

.mp-gm-wrapper .mp-gm-filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mp-gm-wrapper .mp-gm-filter-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--mp-gm-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mp-gm-wrapper .mp-gm-filter-input,
.mp-gm-wrapper .mp-gm-filter-select {
    padding: 12px 16px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    color: #1e293b;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 100%;
    min-height: 46px;
}

.mp-gm-wrapper .mp-gm-filter-input::placeholder {
    color: #94a3b8;
}

.mp-gm-wrapper .mp-gm-filter-input:focus,
.mp-gm-wrapper .mp-gm-filter-select:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.mp-gm-wrapper .mp-gm-filter-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ==================== QUICK FILTERS ==================== */
.mp-gm-wrapper .mp-gm-quick-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.mp-gm-wrapper .mp-gm-quick-filter-btn {
    padding: 10px 18px;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.mp-gm-quick-filter-divider {
    width: 1px;
    height: 28px;
    background: rgba(148, 163, 184, 0.3);
    margin: 0 8px;
    display: inline-block;
    align-self: center;
}

/* ==================== BUTTONS ==================== */
.mp-gm-wrapper .mp-gm-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.mp-gm-filters-card .mp-gm-btn {
    min-height: 46px;
}

.mp-gm-wrapper .mp-gm-btn-primary {
    background: linear-gradient(135deg, var(--mp-gm-primary), var(--mp-gm-secondary));
    color: #fff;
    box-shadow: 0 4px 15px rgba(43, 69, 251, 0.25);
}

.mp-gm-wrapper .mp-gm-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mp-gm-wrapper .mp-gm-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 30px rgba(43, 69, 251, 0.4),
        0 0 20px rgba(43, 69, 251, 0.2);
}

.mp-gm-wrapper .mp-gm-btn-primary:hover::before {
    left: 100%;
}

.mp-gm-wrapper .mp-gm-btn-success {
    background: linear-gradient(135deg, var(--mp-gm-success), #059669);
    color: #fff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.mp-gm-wrapper .mp-gm-btn-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mp-gm-wrapper .mp-gm-btn-success:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 30px rgba(16, 185, 129, 0.4),
        0 0 20px rgba(16, 185, 129, 0.2);
}

.mp-gm-wrapper .mp-gm-btn-success:hover::before {
    left: 100%;
}

.mp-gm-wrapper .mp-gm-btn-warning {
    background: linear-gradient(135deg, var(--mp-gm-warning), #d97706);
    color: #fff;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}

.mp-gm-wrapper .mp-gm-btn-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mp-gm-wrapper .mp-gm-btn-warning:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 30px rgba(245, 158, 11, 0.4),
        0 0 20px rgba(245, 158, 11, 0.2);
}

.mp-gm-wrapper .mp-gm-btn-warning:hover::before {
    left: 100%;
}

.mp-gm-wrapper .mp-gm-btn-danger {
    background: linear-gradient(135deg, var(--mp-gm-danger), #dc2626);
    color: #fff;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.25);
}

.mp-gm-wrapper .mp-gm-btn-danger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mp-gm-wrapper .mp-gm-btn-danger:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 30px rgba(239, 68, 68, 0.4),
        0 0 20px rgba(239, 68, 68, 0.2);
}

.mp-gm-wrapper .mp-gm-btn-danger:hover::before {
    left: 100%;
}

.mp-gm-wrapper .mp-gm-btn-orange {
    background: linear-gradient(135deg, var(--mp-gm-orange), #ea580c);
    color: #fff;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
}

.mp-gm-wrapper .mp-gm-btn-orange::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mp-gm-wrapper .mp-gm-btn-orange:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 30px rgba(249, 115, 22, 0.4),
        0 0 20px rgba(249, 115, 22, 0.2);
}

.mp-gm-wrapper .mp-gm-btn-orange:hover::before {
    left: 100%;
}

.mp-gm-wrapper .mp-gm-btn-purple {
    background: linear-gradient(135deg, var(--mp-gm-purple), #7c3aed);
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
}

.mp-gm-wrapper .mp-gm-btn-purple::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mp-gm-wrapper .mp-gm-btn-purple:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 30px rgba(139, 92, 246, 0.4),
        0 0 20px rgba(139, 92, 246, 0.2);
}

.mp-gm-wrapper .mp-gm-btn-purple:hover::before {
    left: 100%;
}

.mp-gm-wrapper .mp-gm-btn-secondary {
    padding: 10px 16px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--mp-gm-transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #475569;
    min-height: 46px;
    position: relative;
    overflow: hidden;
}

.mp-gm-wrapper .mp-gm-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(14, 165, 233, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mp-gm-wrapper .mp-gm-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(99, 102, 241, 0.4);
    color: var(--mp-gm-primary);
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.mp-gm-wrapper .mp-gm-btn-secondary:hover::before {
    opacity: 1;
}

.mp-gm-wrapper .mp-gm-btn-sm {
    padding: 8px 14px;
    font-size: 12px;
}

/* ==================== BUTTON COLOR VARIANTS ==================== */
/* Classes genéricas de cor para botões */
.mp-gm-wrapper .mp-gm-btn.verde {
    background: linear-gradient(135deg, var(--mp-gm-success), #059669);
    color: #fff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.mp-gm-wrapper .mp-gm-btn.verde:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}
.mp-gm-wrapper .mp-gm-btn.azul {
    background: linear-gradient(135deg, var(--mp-gm-primary), var(--mp-gm-secondary));
    color: #fff;
    box-shadow: 0 4px 15px rgba(43, 69, 251, 0.3);
}
.mp-gm-wrapper .mp-gm-btn.azul:hover {
    box-shadow: 0 8px 25px rgba(43, 69, 251, 0.5);
}
.mp-gm-wrapper .mp-gm-btn.azul-claro {
    background: linear-gradient(135deg, var(--mp-gm-accent), #0284c7);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 176, 228, 0.3);
}
.mp-gm-wrapper .mp-gm-btn.azul-claro:hover {
    box-shadow: 0 8px 25px rgba(0, 176, 228, 0.5);
}
.mp-gm-wrapper .mp-gm-btn.vermelho {
    background: linear-gradient(135deg, var(--mp-gm-danger), #dc2626);
    color: #fff;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}
.mp-gm-wrapper .mp-gm-btn.vermelho:hover {
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
}
.mp-gm-wrapper .mp-gm-btn.amarelo {
    background: linear-gradient(135deg, var(--mp-gm-warning), #d97706);
    color: #fff;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}
.mp-gm-wrapper .mp-gm-btn.amarelo:hover {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}
.mp-gm-wrapper .mp-gm-btn.laranja {
    background: linear-gradient(135deg, var(--mp-gm-orange), #ea580c);
    color: #fff;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}
.mp-gm-wrapper .mp-gm-btn.laranja:hover {
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}
.mp-gm-wrapper .mp-gm-btn.roxo {
    background: linear-gradient(135deg, var(--mp-gm-purple), #7c3aed);
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}
.mp-gm-wrapper .mp-gm-btn.roxo:hover {
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}
.mp-gm-wrapper .mp-gm-btn.rosa {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: #fff;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}
.mp-gm-wrapper .mp-gm-btn.rosa:hover {
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.5);
}
.mp-gm-wrapper .mp-gm-btn.ciano {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: #fff;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}
.mp-gm-wrapper .mp-gm-btn.ciano:hover {
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
}
.mp-gm-wrapper .mp-gm-btn.indigo {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.mp-gm-wrapper .mp-gm-btn.indigo:hover {
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}
.mp-gm-wrapper .mp-gm-btn.cinza {
    background: linear-gradient(135deg, #64748b, #475569);
    color: #fff;
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.3);
}
.mp-gm-wrapper .mp-gm-btn.cinza:hover {
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.5);
}
.mp-gm-wrapper .mp-gm-btn.lima {
    background: linear-gradient(135deg, #84cc16, #65a30d);
    color: #fff;
    box-shadow: 0 4px 15px rgba(132, 204, 22, 0.3);
}
.mp-gm-wrapper .mp-gm-btn.lima:hover {
    box-shadow: 0 8px 25px rgba(132, 204, 22, 0.5);
}

/* ==================== NEW BUTTON (Header Action) ==================== */
.mp-gm-wrapper .mp-gm-btn-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    margin-top: 16px;
    background: linear-gradient(135deg, var(--mp-gm-success) 0%, #059669 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateY(10px);
}

.mp-gm-wrapper .mp-gm-btn-new.loaded {
    opacity: 1;
    transform: translateY(0);
}

.mp-gm-wrapper .mp-gm-btn-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.mp-gm-wrapper .mp-gm-btn-new.azul {
    background: linear-gradient(135deg, var(--mp-gm-primary) 0%, var(--mp-gm-secondary) 100%);
    box-shadow: 0 4px 14px rgba(43, 69, 251, 0.4);
}
.mp-gm-wrapper .mp-gm-btn-new.azul:hover {
    box-shadow: 0 6px 20px rgba(43, 69, 251, 0.5);
}

.mp-gm-wrapper .mp-gm-btn-new.roxo {
    background: linear-gradient(135deg, var(--mp-gm-purple) 0%, #7c3aed 100%);
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
}
.mp-gm-wrapper .mp-gm-btn-new.roxo:hover {
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.mp-gm-wrapper .mp-gm-btn-new.laranja {
    background: linear-gradient(135deg, var(--mp-gm-orange) 0%, #ea580c 100%);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}
.mp-gm-wrapper .mp-gm-btn-new.laranja:hover {
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

/* ==================== CARD BUTTONS (Card Actions) ==================== */
.mp-gm-wrapper .mp-gm-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    min-height: 36px;
    white-space: nowrap;
}

/* ==================== CARD ACTIONS CONTAINER ==================== */
.mp-gm-wrapper .mp-gm-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    flex-wrap: nowrap;
    margin-top: auto;
    position: relative;
}

.mp-gm-wrapper .mp-gm-card-actions::-webkit-scrollbar {
    display: none;
}

/* Variantes filled (LEGACY - mantidas para compatibilidade) */
.mp-gm-wrapper .mp-gm-card-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}
.mp-gm-wrapper .mp-gm-card-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.mp-gm-wrapper .mp-gm-card-btn-success,
.mp-gm-wrapper .mp-gm-card-btn-verde {
    background: linear-gradient(135deg, var(--mp-gm-success) 0%, #059669 100%);
    color: white;
}
.mp-gm-wrapper .mp-gm-card-btn-success:hover,
.mp-gm-wrapper .mp-gm-card-btn-verde:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.mp-gm-wrapper .mp-gm-card-btn-warning,
.mp-gm-wrapper .mp-gm-card-btn-amarelo {
    background: linear-gradient(135deg, var(--mp-gm-warning) 0%, #d97706 100%);
    color: white;
}
.mp-gm-wrapper .mp-gm-card-btn-warning:hover,
.mp-gm-wrapper .mp-gm-card-btn-amarelo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.mp-gm-wrapper .mp-gm-card-btn-danger,
.mp-gm-wrapper .mp-gm-card-btn-vermelho {
    background: linear-gradient(135deg, var(--mp-gm-danger) 0%, #dc2626 100%);
    color: white;
}
.mp-gm-wrapper .mp-gm-card-btn-danger:hover,
.mp-gm-wrapper .mp-gm-card-btn-vermelho:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.mp-gm-wrapper .mp-gm-card-btn-outline {
    background: transparent;
    border: 1.5px solid #667eea;
    color: #667eea;
}
.mp-gm-wrapper .mp-gm-card-btn-outline:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: #5a67d8;
    color: #5a67d8;
}

.mp-gm-wrapper .mp-gm-card-btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 8px 12px;
    min-width: var(--mp-gm-min-width-btn);
}
.mp-gm-wrapper .mp-gm-card-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.mp-gm-card-btn-lead {
    background: rgba(249, 115, 22, 0.12);
    color: #ea580c;
    border-color: rgba(249, 115, 22, 0.2);
    padding: 8px 12px;
    min-width: var(--mp-gm-min-width-btn);
    width: 36px;
    border: 1px solid #ccc;
}

.mp-gm-card-btn-lead:hover {
    background: #f5f5f5;
    border-color: #adadad;
    color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.mp-gm-wrapper .mp-gm-card-btn-roxo {
    background: linear-gradient(135deg, var(--mp-gm-purple) 0%, #7c3aed 100%);
    color: white;
}
.mp-gm-wrapper .mp-gm-card-btn-roxo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.mp-gm-wrapper .mp-gm-card-btn-laranja {
    background: linear-gradient(135deg, var(--mp-gm-orange) 0%, #ea580c 100%);
    color: white;
}
.mp-gm-wrapper .mp-gm-card-btn-laranja:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.mp-gm-wrapper .mp-gm-card-btn-azul {
    background: linear-gradient(135deg, var(--mp-gm-primary) 0%, var(--mp-gm-secondary) 100%);
    color: white;
}
.mp-gm-wrapper .mp-gm-card-btn-azul:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 69, 251, 0.4);
}

/* ==================== CARD BUTTONS OUTLINE (Generic Reusable) ==================== */
/*
 * Outline-style card action buttons - glass/frosted aesthetic
 * Usage: class="mp-gm-card-btn mp-gm-card-btn-ol-{color}"
 * Available: purple, green, blue, orange, red, yellow, cyan, indigo, pink, gray, whatsapp
 */

/* Base outline rules */
.mp-gm-wrapper .mp-gm-card-btn[class*="mp-gm-card-btn-ol-"] {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-width: 1.5px;
    border-style: solid;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mp-gm-wrapper .mp-gm-card-btn[class*="mp-gm-card-btn-ol-"]:hover {
    transform: translateY(-2px);
}

/* Purple */
.mp-gm-wrapper .mp-gm-card-btn-ol-purple {
    border-color: rgba(139, 92, 246, 0.4);
    color: #7c3aed;
}
.mp-gm-wrapper .mp-gm-card-btn-ol-purple:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

/* Green / Success */
.mp-gm-wrapper .mp-gm-card-btn-ol-green {
    border-color: rgba(16, 185, 129, 0.4);
    color: #059669;
}
.mp-gm-wrapper .mp-gm-card-btn-ol-green:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

/* Blue / Primary */
.mp-gm-wrapper .mp-gm-card-btn-ol-blue {
    border-color: rgba(43, 69, 251, 0.4);
    color: #2b45fb;
}
.mp-gm-wrapper .mp-gm-card-btn-ol-blue:hover {
    background: rgba(43, 69, 251, 0.1);
    border-color: rgba(43, 69, 251, 0.6);
    box-shadow: 0 4px 12px rgba(43, 69, 251, 0.2);
}

/* Orange */
.mp-gm-wrapper .mp-gm-card-btn-ol-orange {
    border-color: rgba(249, 115, 22, 0.4);
    color: #ea580c;
}
.mp-gm-wrapper .mp-gm-card-btn-ol-orange:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.6);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

/* Red / Danger */
.mp-gm-wrapper .mp-gm-card-btn-ol-red {
    border-color: rgba(239, 68, 68, 0.4);
    color: #dc2626;
}
.mp-gm-wrapper .mp-gm-card-btn-ol-red:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* Yellow / Warning */
.mp-gm-wrapper .mp-gm-card-btn-ol-yellow {
    border-color: rgba(245, 158, 11, 0.4);
    color: #d97706;
}
.mp-gm-wrapper .mp-gm-card-btn-ol-yellow:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

/* Cyan */
.mp-gm-wrapper .mp-gm-card-btn-ol-cyan {
    border-color: rgba(6, 182, 212, 0.4);
    color: #0891b2;
}
.mp-gm-wrapper .mp-gm-card-btn-ol-cyan:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
}

/* Indigo */
.mp-gm-wrapper .mp-gm-card-btn-ol-indigo {
    border-color: rgba(99, 102, 241, 0.4);
    color: #4f46e5;
}
.mp-gm-wrapper .mp-gm-card-btn-ol-indigo:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* Pink / Rosa */
.mp-gm-wrapper .mp-gm-card-btn-ol-pink {
    border-color: rgba(236, 72, 153, 0.4);
    color: #db2777;
}
.mp-gm-wrapper .mp-gm-card-btn-ol-pink:hover {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.2);
}

/* Gray */
.mp-gm-wrapper .mp-gm-card-btn-ol-gray {
    border-color: rgba(100, 116, 139, 0.4);
    color: #475569;
}
.mp-gm-wrapper .mp-gm-card-btn-ol-gray:hover {
    background: rgba(100, 116, 139, 0.1);
    border-color: rgba(100, 116, 139, 0.6);
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.15);
}

/* WhatsApp outline */
.mp-gm-wrapper .mp-gm-card-btn-ol-whatsapp {
    border-color: rgba(37, 211, 102, 0.4);
    color: #128c7e;
    min-width: var(--mp-gm-min-width-btn);
}
.mp-gm-wrapper .mp-gm-card-btn-ol-whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.6);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* Botão More (três pontinhos) - outline glass */
.mp-gm-wrapper .mp-gm-card-btn-more {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(148, 163, 184, 0.35);
    color: #64748b;
    width: 36px;
    height: 36px;
    padding: 0;
}
.mp-gm-wrapper .mp-gm-card-btn-more:hover {
    background: rgba(100, 116, 139, 0.08);
    border-color: rgba(100, 116, 139, 0.5);
    color: #475569;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.15);
}

/* Ripple effect */
.mp-gm-wrapper .mp-gm-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.mp-gm-wrapper .mp-gm-btn:active::after {
    width: 200px;
    height: 200px;
}

/* ==================== CARDS GRID ==================== */
.mp-gm-wrapper .mp-gm-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
    gap: 25px;
    margin-bottom: 40px;
    padding: 20px 0;
    position: relative;
    overflow: visible;
    max-width: 100%;
    box-sizing: border-box;
}

/* ==================== CARD ==================== */
.mp-gm-wrapper .mp-gm-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: visible;
    box-shadow:
        0 8px 32px rgba(31, 38, 135, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease, z-index 0s;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 15px 0;
    padding: 10px;
    z-index: 1;
    max-width: 100%;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.mp-gm-wrapper .mp-gm-card.mp-gm-card-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Fallback - após 1.5s todos os cards ficam visíveis mesmo sem JS */
@keyframes mp-gm-card-fallback-show {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.mp-gm-wrapper .mp-gm-card {
    animation: mp-gm-card-fallback-show 0.4s ease 1.5s forwards;
}

.mp-gm-wrapper .mp-gm-card.mp-gm-card-visible {
    animation: none;
}

.mp-gm-wrapper .mp-gm-card:hover {
    transform: translateY(-8px) scale(1.01);
    background: rgba(255, 255, 255, 0.75);
    box-shadow:
        0 25px 60px rgba(31, 38, 135, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.95);
    z-index: 10;
}

/* Card status borders - LEGACY */
.mp-gm-wrapper .mp-gm-card.mp-gm-card-ativo { border-left: 3px solid var(--mp-gm-success); }
.mp-gm-wrapper .mp-gm-card.mp-gm-card-inativo { border-left: 3px solid var(--mp-gm-danger); }
.mp-gm-wrapper .mp-gm-card.mp-gm-card-escolhido { border-left: 3px solid var(--mp-gm-primary); }
.mp-gm-wrapper .mp-gm-card.mp-gm-card-vencido { border-left: 3px solid var(--mp-gm-orange); }
.mp-gm-wrapper .mp-gm-card.mp-gm-card-churn {
    border-left: 3px solid var(--mp-gm-churn);
    background: rgba(254, 226, 226, 0.4);
}

/* ==================== CARD COLOR VARIANTS ==================== */
.mp-gm-wrapper .mp-gm-card.verde { border-left: 3px solid var(--mp-gm-success); }
.mp-gm-wrapper .mp-gm-card.azul { border-left: 3px solid var(--mp-gm-primary); }
.mp-gm-wrapper .mp-gm-card.azul-claro { border-left: 3px solid var(--mp-gm-accent); }
.mp-gm-wrapper .mp-gm-card.vermelho { border-left: 3px solid var(--mp-gm-danger); }
.mp-gm-wrapper .mp-gm-card.amarelo { border-left: 3px solid var(--mp-gm-warning); }
.mp-gm-wrapper .mp-gm-card.laranja { border-left: 3px solid var(--mp-gm-orange); }
.mp-gm-wrapper .mp-gm-card.roxo { border-left: 3px solid var(--mp-gm-purple); }
.mp-gm-wrapper .mp-gm-card.rosa { border-left: 3px solid #ec4899; }
.mp-gm-wrapper .mp-gm-card.ciano { border-left: 3px solid #06b6d4; }
.mp-gm-wrapper .mp-gm-card.indigo { border-left: 3px solid #6366f1; }
.mp-gm-wrapper .mp-gm-card.cinza { border-left: 3px solid #64748b; }
.mp-gm-wrapper .mp-gm-card.lima { border-left: 3px solid #84cc16; }

/* Card color variants - background sutil no hover */
.mp-gm-wrapper .mp-gm-card.verde:hover { background: rgba(16, 185, 129, 0.08); }
.mp-gm-wrapper .mp-gm-card.azul:hover { background: rgba(43, 69, 251, 0.08); }
.mp-gm-wrapper .mp-gm-card.azul-claro:hover { background: rgba(0, 176, 228, 0.08); }
.mp-gm-wrapper .mp-gm-card.vermelho:hover { background: rgba(239, 68, 68, 0.08); }
.mp-gm-wrapper .mp-gm-card.amarelo:hover { background: rgba(245, 158, 11, 0.08); }
.mp-gm-wrapper .mp-gm-card.laranja:hover { background: rgba(249, 115, 22, 0.08); }
.mp-gm-wrapper .mp-gm-card.roxo:hover { background: rgba(139, 92, 246, 0.08); }
.mp-gm-wrapper .mp-gm-card.rosa:hover { background: rgba(236, 72, 153, 0.08); }
.mp-gm-wrapper .mp-gm-card.ciano:hover { background: rgba(6, 182, 212, 0.08); }
.mp-gm-wrapper .mp-gm-card.indigo:hover { background: rgba(99, 102, 241, 0.08); }
.mp-gm-wrapper .mp-gm-card.cinza:hover { background: rgba(100, 116, 139, 0.08); }
.mp-gm-wrapper .mp-gm-card.lima:hover { background: rgba(132, 204, 22, 0.08); }

/* Card color variants - valor com gradiente */
.mp-gm-wrapper .mp-gm-card.verde .mp-gm-card-valor {
    background: linear-gradient(135deg, var(--mp-gm-success), #059669);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mp-gm-wrapper .mp-gm-card.azul .mp-gm-card-valor {
    background: linear-gradient(135deg, var(--mp-gm-primary), var(--mp-gm-secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mp-gm-wrapper .mp-gm-card.azul-claro .mp-gm-card-valor {
    background: linear-gradient(135deg, var(--mp-gm-accent), #0284c7);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mp-gm-wrapper .mp-gm-card.vermelho .mp-gm-card-valor {
    background: linear-gradient(135deg, var(--mp-gm-danger), #dc2626);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mp-gm-wrapper .mp-gm-card.amarelo .mp-gm-card-valor {
    background: linear-gradient(135deg, var(--mp-gm-warning), #d97706);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mp-gm-wrapper .mp-gm-card.laranja .mp-gm-card-valor {
    background: linear-gradient(135deg, var(--mp-gm-orange), #ea580c);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mp-gm-wrapper .mp-gm-card.roxo .mp-gm-card-valor {
    background: linear-gradient(135deg, var(--mp-gm-purple), #7c3aed);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mp-gm-wrapper .mp-gm-card.rosa .mp-gm-card-valor {
    background: linear-gradient(135deg, #ec4899, #db2777);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mp-gm-wrapper .mp-gm-card.ciano .mp-gm-card-valor {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mp-gm-wrapper .mp-gm-card.indigo .mp-gm-card-valor {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mp-gm-wrapper .mp-gm-card.cinza .mp-gm-card-valor {
    background: linear-gradient(135deg, #64748b, #475569);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mp-gm-wrapper .mp-gm-card.lima .mp-gm-card-valor {
    background: linear-gradient(135deg, #84cc16, #65a30d);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ==================== CARD HEADER ==================== */
.mp-gm-wrapper .mp-gm-card-header {
    position: relative;
    padding: 20px;
    background: rgba(248, 250, 252, 0.4);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 18px 18px 0 0;
    overflow: visible;
    padding-bottom: 10px;
}

.mp-gm-wrapper .mp-gm-card-checkbox {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--mp-gm-primary);
}

.mp-gm-wrapper .mp-gm-card-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mp-gm-wrapper .mp-gm-card-status.ativo {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.mp-gm-wrapper .mp-gm-card-status.inativo {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.mp-gm-wrapper .mp-gm-card-status.escolhido {
    background: rgba(43, 69, 251, 0.15);
    color: var(--mp-gm-primary);
    border: 1px solid rgba(43, 69, 251, 0.3);
}

.mp-gm-wrapper .mp-gm-card-status.pre-escolhido {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.mp-gm-wrapper .mp-gm-card-status.erro {
    background: rgba(148, 163, 184, 0.15);
    color: #64748b;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.mp-gm-wrapper .mp-gm-card-status.vencido {
    background: rgba(249, 115, 22, 0.15);
    color: #ea580c;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.mp-gm-wrapper .mp-gm-card-status.churn {
    background: rgba(220, 38, 38, 0.15);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

/* ==================== CARD STATUS COLOR VARIANTS ==================== */
.mp-gm-wrapper .mp-gm-card-status.verde {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.mp-gm-wrapper .mp-gm-card-status.azul {
    background: rgba(43, 69, 251, 0.15);
    color: var(--mp-gm-primary);
    border: 1px solid rgba(43, 69, 251, 0.3);
}
.mp-gm-wrapper .mp-gm-card-status.azul-claro {
    background: rgba(0, 176, 228, 0.15);
    color: #0284c7;
    border: 1px solid rgba(0, 176, 228, 0.3);
}
.mp-gm-wrapper .mp-gm-card-status.vermelho {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}
.mp-gm-wrapper .mp-gm-card-status.amarelo {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.3);
}
.mp-gm-wrapper .mp-gm-card-status.laranja {
    background: rgba(249, 115, 22, 0.15);
    color: #ea580c;
    border: 1px solid rgba(249, 115, 22, 0.3);
}
.mp-gm-wrapper .mp-gm-card-status.roxo {
    background: rgba(139, 92, 246, 0.15);
    color: #7c3aed;
    border: 1px solid rgba(139, 92, 246, 0.3);
}
.mp-gm-wrapper .mp-gm-card-status.rosa {
    background: rgba(236, 72, 153, 0.15);
    color: #db2777;
    border: 1px solid rgba(236, 72, 153, 0.3);
}
.mp-gm-wrapper .mp-gm-card-status.ciano {
    background: rgba(6, 182, 212, 0.15);
    color: #0891b2;
    border: 1px solid rgba(6, 182, 212, 0.3);
}
.mp-gm-wrapper .mp-gm-card-status.indigo {
    background: rgba(99, 102, 241, 0.15);
    color: #4f46e5;
    border: 1px solid rgba(99, 102, 241, 0.3);
}
.mp-gm-wrapper .mp-gm-card-status.cinza {
    background: rgba(100, 116, 139, 0.15);
    color: #475569;
    border: 1px solid rgba(100, 116, 139, 0.3);
}
.mp-gm-wrapper .mp-gm-card-status.lima {
    background: rgba(132, 204, 22, 0.15);
    color: #65a30d;
    border: 1px solid rgba(132, 204, 22, 0.3);
}

.mp-gm-wrapper .mp-gm-card-id {
    display: inline-block;
    background: rgba(43, 69, 251, 0.1);
    color: var(--mp-gm-primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-left: 28px;
}

.mp-gm-wrapper .mp-gm-card-cliente {
    font-size: 15px;
    font-weight: 800;
    color: var(--mp-gm-ink);
    line-height: 1.3;
    padding-right: 10px;
    height: 1.3em;
    min-height: 1.3em;
    max-height: 1.3em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
}

/* ==================== LEAD STATUS ==================== */
.mp-gm-wrapper .mp-gm-card-lead-status {
    font-size: 12px;
    color: #64748b;
    margin-top: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mp-gm-wrapper .mp-gm-card-lead-status:hover {
    background: rgba(99, 102, 241, 0.1);
}

.mp-gm-wrapper .mp-gm-card-lead-status::after {
    content: '\f044';
    font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    opacity: 0.5;
    margin-left: 4px;
}

.mp-gm-wrapper .mp-gm-card-lead-status.cliente {
    color: #059669;
    font-weight: 600;
}

.mp-gm-wrapper .mp-gm-card-lead-status.churn {
    color: #dc2626;
    font-weight: 600;
}

.mp-gm-wrapper .mp-gm-lead-status-container {
    position: relative;
    display: inline-block;
}

.mp-gm-wrapper .mp-gm-lead-status-selector {
    display: none !important;
}

/* ==================== CARD BODY ==================== */
.mp-gm-wrapper .mp-gm-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: visible;
    padding-top: 10px;
}

.mp-gm-wrapper .mp-gm-card-valor-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.mp-gm-wrapper .mp-gm-card-valor {
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--mp-gm-success), #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

/* Value colors matching card status - LEGACY */
.mp-gm-wrapper .mp-gm-card.mp-gm-card-ativo .mp-gm-card-valor {
    background: linear-gradient(135deg, var(--mp-gm-success), #059669);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mp-gm-wrapper .mp-gm-card.mp-gm-card-inativo .mp-gm-card-valor {
    background: linear-gradient(135deg, var(--mp-gm-danger), #dc2626);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mp-gm-wrapper .mp-gm-card.mp-gm-card-escolhido .mp-gm-card-valor {
    background: linear-gradient(135deg, var(--mp-gm-primary), var(--mp-gm-secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mp-gm-wrapper .mp-gm-card.mp-gm-card-vencido .mp-gm-card-valor {
    background: linear-gradient(135deg, var(--mp-gm-orange), #ea580c);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mp-gm-wrapper .mp-gm-card.mp-gm-card-churn .mp-gm-card-valor {
    background: linear-gradient(135deg, var(--mp-gm-churn), #b91c1c);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.mp-gm-wrapper .mp-gm-card-periodo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 0;
    width: fit-content;
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin-left: 50px;
}

.mp-gm-wrapper .mp-gm-card-periodo.anual {
    background: rgba(249, 115, 22, 0.12);
    color: #ea580c;
    border-color: rgba(249, 115, 22, 0.2);
}

.mp-gm-wrapper .mp-gm-card-plano {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 600;
}

.mp-gm-wrapper .mp-gm-card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.mp-gm-wrapper .mp-gm-card-meta-row {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mp-gm-wrapper .mp-gm-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mp-gm-wrapper .mp-gm-card-meta i {
    color: var(--mp-gm-primary);
}

/* ==================== ENGAGEMENT STATS ==================== */
.mp-gm-wrapper .mp-gm-card-engagement {
    display: flex;
    gap: 15px;
    padding: 10px 14px;
    background: rgba(248, 250, 252, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.mp-gm-wrapper .mp-gm-engagement-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #64748b;
}

.mp-gm-wrapper .mp-gm-engagement-item i {
    font-size: 15px;
}

.mp-gm-wrapper .mp-gm-engagement-item.logins i { color: var(--mp-gm-success); }
.mp-gm-wrapper .mp-gm-engagement-item.consumo i { color: var(--mp-gm-warning); }

/* ==================== ALERTS ==================== */
.mp-gm-wrapper .mp-gm-card-alerts {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.mp-gm-wrapper .mp-gm-alert-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: mp-gm-pulse 2s infinite ease-in-out;
}

.mp-gm-wrapper .mp-gm-alert-badge[onclick] {
    cursor: pointer;
}

.mp-gm-wrapper .mp-gm-alert-badge[onclick]:hover {
    transform: scale(1.25) translateY(-2px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.25),
        0 0 20px currentColor;
    border-color: #fff;
}

.mp-gm-wrapper .mp-gm-alert-badge.nfe {
    background: linear-gradient(135deg, var(--mp-gm-danger), #dc2626);
}
.mp-gm-wrapper .mp-gm-alert-badge.nfe:hover {
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4), 0 0 20px rgba(239, 68, 68, 0.5);
}

.mp-gm-wrapper .mp-gm-alert-badge.cycle {
    background: linear-gradient(135deg, var(--mp-gm-purple), #7c3aed);
}
.mp-gm-wrapper .mp-gm-alert-badge.cycle:hover {
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4), 0 0 20px rgba(139, 92, 246, 0.5);
}

.mp-gm-wrapper .mp-gm-alert-badge.trt {
    background: linear-gradient(135deg, var(--mp-gm-success), #059669);
}
.mp-gm-wrapper .mp-gm-alert-badge.trt:hover {
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4), 0 0 20px rgba(16, 185, 129, 0.5);
}

.mp-gm-wrapper .mp-gm-alert-badge.vencido {
    background: linear-gradient(135deg, var(--mp-gm-orange), #ea580c);
}
.mp-gm-wrapper .mp-gm-alert-badge.vencido:hover {
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4), 0 0 20px rgba(249, 115, 22, 0.5);
}

@keyframes mp-gm-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.85; }
}

/* Card z-index no hover/touch */
.mp-gm-wrapper .mp-gm-card:hover,
.mp-gm-wrapper .mp-gm-card.mp-gm-touch-active,
.mp-gm-wrapper .mp-gm-card.mp-gm-dropdown-open {
    z-index: 1000;
}

/* ==================== DROPDOWN MENU ==================== */
.mp-gm-wrapper .mp-gm-dropdown {
    position: relative;
    margin-left: auto;
}

/* Backdrop overlay - MOBILE ONLY */
.mp-gm-dropdown-backdrop {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 999998;
    -webkit-tap-highlight-color: transparent;
}

.mp-gm-dropdown-backdrop.show {
    display: block;
    animation: mp-gm-fadeIn 0.2s ease;
}

/* Handle indicator (bottom sheet mobile) */
.mp-gm-wrapper .mp-gm-dropdown-handle {
    width: 36px;
    height: 4px;
    background: rgba(148, 163, 184, 0.4);
    border-radius: 2px;
    margin: 10px auto 6px;
    display: block;
}

/* Close button */
.mp-gm-wrapper .mp-gm-dropdown-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(239, 68, 68, 0.08);
    color: #94a3b8;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
    z-index: 10;
}

.mp-gm-wrapper .mp-gm-dropdown-close:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

/*
 * DEFAULT (DESKTOP): absolute popover acima do botão
 */
.mp-gm-wrapper .mp-gm-dropdown-menu {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 14px;
    box-shadow: 0 12px 48px rgba(31, 38, 135, 0.25);
    min-width: 260px;
    max-height: 420px;
    overflow-y: auto;
    z-index: 999999;
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding-bottom: 6px;
}

.mp-gm-wrapper .mp-gm-dropdown-menu.show {
    display: block;
}

.mp-gm-wrapper .mp-gm-dropdown-menu > .mp-gm-dropdown-header:first-of-type,
.mp-gm-wrapper .mp-gm-dropdown-menu > .mp-gm-dropdown-handle + .mp-gm-dropdown-header,
.mp-gm-wrapper .mp-gm-dropdown-menu > .mp-gm-dropdown-close + .mp-gm-dropdown-header {
    padding-right: 50px;
    margin-top: 0;
}

.mp-gm-wrapper .mp-gm-dropdown-menu::-webkit-scrollbar { width: 6px; }
.mp-gm-wrapper .mp-gm-dropdown-menu::-webkit-scrollbar-track { background: rgba(148, 163, 184, 0.1); border-radius: 3px; }
.mp-gm-wrapper .mp-gm-dropdown-menu::-webkit-scrollbar-thumb { background: rgba(99, 102, 241, 0.3); border-radius: 3px; }

.mp-gm-wrapper .mp-gm-dropdown-item {
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #475569;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    min-height: 40px;
}

.mp-gm-wrapper .mp-gm-dropdown-item:hover {
    background: rgba(99, 102, 241, 0.08);
    color: #1e293b;
}

.mp-gm-wrapper .mp-gm-dropdown-item:active {
    background: rgba(99, 102, 241, 0.15);
}

.mp-gm-wrapper .mp-gm-dropdown-item i { width: 20px; text-align: center; font-size: 16px; }

.mp-gm-wrapper .mp-gm-dropdown-divider {
    height: 1px;
    background: rgba(148, 163, 184, 0.15);
    margin: 5px 0;
}

.mp-gm-wrapper .mp-gm-dropdown-header {
    padding: 12px 18px 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--mp-gm-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Desktop: hide handle, no backdrop */
@media (min-width: 769px) {
    .mp-gm-wrapper .mp-gm-dropdown-handle {
        display: none;
    }

    .mp-gm-dropdown-backdrop {
        display: none !important;
    }
}

/*
 * MOBILE (<=768px): bottom-sheet fixed
 */
@media (max-width: 768px) {
    .mp-gm-wrapper .mp-gm-dropdown-menu {
        position: fixed;
        bottom: 0;
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(100%);
        top: auto;
        margin-bottom: 0;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -8px 40px rgba(31, 38, 135, 0.2);
        max-height: 75vh;
        min-width: 300px;
        width: auto;
        border-bottom: none;
        padding-bottom: env(safe-area-inset-bottom, 16px);
        transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
    }

    .mp-gm-wrapper .mp-gm-dropdown-menu.show {
        transform: translateX(-50%) translateY(0);
    }

    .mp-gm-wrapper .mp-gm-dropdown-item {
        padding: 14px 18px;
        font-size: 15px;
        min-height: 48px;
    }

    .mp-gm-wrapper .mp-gm-dropdown-close {
        width: 36px;
        height: 36px;
    }
}

/* ==================== EMPTY STATE ==================== */
.mp-gm-wrapper .mp-gm-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.mp-gm-wrapper .mp-gm-empty-state i { font-size: 64px; color: var(--mp-gm-primary); opacity: .3; margin-bottom: 20px; }
.mp-gm-wrapper .mp-gm-empty-state h3 { font-size: 24px; font-weight: 800; color: #1e293b; margin-bottom: 10px; }
.mp-gm-wrapper .mp-gm-empty-state p { font-size: 16px; color: #64748b; margin-bottom: 25px; }

/* ==================== PAGINATION ==================== */
.mp-gm-wrapper .mp-gm-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.mp-gm-wrapper .mp-gm-pagination-btn {
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.mp-gm-wrapper .mp-gm-pagination-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(14, 165, 233, 0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mp-gm-wrapper .mp-gm-pagination-btn:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(99, 102, 241, 0.4);
    color: var(--mp-gm-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.mp-gm-wrapper .mp-gm-pagination-btn:hover::before { opacity: 1; }

.mp-gm-wrapper .mp-gm-pagination-btn.active {
    background: linear-gradient(135deg, var(--mp-gm-primary), var(--mp-gm-secondary));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(43, 69, 251, 0.3);
}

.mp-gm-wrapper .mp-gm-pagination-btn.active:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(43, 69, 251, 0.4);
}

.mp-gm-wrapper .mp-gm-pagination-btn.disabled { opacity: .4; cursor: not-allowed; pointer-events: none; }

.mp-gm-wrapper .mp-gm-pagination-info { font-size: 14px; color: #64748b; margin: 0 15px; }

/* ==================== SELECTION BAR ==================== */
.mp-gm-wrapper .mp-gm-selection-bar {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 28px;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(31, 38, 135, 0.15);
    display: none;
    align-items: center;
    gap: 20px;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.mp-gm-wrapper .mp-gm-selection-bar.show { display: flex; }
.mp-gm-wrapper .mp-gm-selection-count { font-size: 15px; font-weight: 700; color: var(--mp-gm-primary); }
.mp-gm-wrapper .mp-gm-selection-total { font-size: 17px; font-weight: 800; color: var(--mp-gm-success); }

/* ==================== TOAST ==================== */
.mp-gm-wrapper .mp-gm-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 25px;
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(31, 38, 135, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10001;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #1e293b;
}

.mp-gm-wrapper .mp-gm-toast.success { border-left: 3px solid var(--mp-gm-success); }
.mp-gm-wrapper .mp-gm-toast.error { border-left: 3px solid var(--mp-gm-danger); }
.mp-gm-wrapper .mp-gm-toast.info { border-left: 3px solid var(--mp-gm-primary); }
.mp-gm-wrapper .mp-gm-toast.warning { border-left: 3px solid var(--mp-gm-warning); }

.mp-gm-wrapper .mp-gm-toast i { font-size: 24px; }
.mp-gm-wrapper .mp-gm-toast.success i { color: var(--mp-gm-success); }
.mp-gm-wrapper .mp-gm-toast.error i { color: var(--mp-gm-danger); }
.mp-gm-wrapper .mp-gm-toast.info i { color: var(--mp-gm-primary); }
.mp-gm-wrapper .mp-gm-toast.warning i { color: var(--mp-gm-warning); }

/* ==================== HISTORY ACCORDION ==================== */
.mp-gm-wrapper .mp-gm-history-accordion { margin-top: 10px; }

.mp-gm-wrapper .mp-gm-history-toggle {
    background: none;
    border: none;
    color: var(--mp-gm-primary);
    font-size: 12px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mp-gm-wrapper .mp-gm-history-toggle:hover { background: rgba(99, 102, 241, 0.1); }

.mp-gm-wrapper .mp-gm-history-content {
    display: none;
    padding: 10px;
    background: rgba(248, 250, 252, 0.6);
    border-radius: 8px;
    margin-top: 10px;
    font-size: 12px;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.mp-gm-wrapper .mp-gm-history-content.show { display: block; }

.mp-gm-wrapper .mp-gm-history-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    color: #64748b;
}

.mp-gm-wrapper .mp-gm-history-item:last-child { border-bottom: none; }

/* ==================== LOADING STATES ==================== */
.mp-gm-wrapper .mp-gm-stat-item {
    opacity: 0;
    transform: translateY(20px);
}

.mp-gm-wrapper .mp-gm-stat-item.loaded {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.mp-gm-wrapper .mp-gm-stat-number { opacity: 0; }
.mp-gm-wrapper .mp-gm-stat-number.visible { opacity: 1; transition: opacity 0.3s ease; }

/* Card loading overlay */
.mp-gm-wrapper .mp-gm-card.mp-gm-card-loading { pointer-events: none; }

.mp-gm-wrapper .mp-gm-card-loading-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    animation: mp-gm-fadeIn 0.2s ease;
}

.mp-gm-wrapper .mp-gm-card-loading-overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    animation: mp-gm-shimmer 1.5s infinite;
    border-radius: 20px;
}

.mp-gm-wrapper .mp-gm-card-loading-spinner {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--mp-gm-primary), var(--mp-gm-secondary));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px;
    box-shadow: 0 8px 25px rgba(43, 69, 251, 0.4);
    z-index: 1;
}

@keyframes mp-gm-fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Skeleton loading */
.mp-gm-wrapper .mp-gm-card.skeleton { pointer-events: none; }

.mp-gm-wrapper .mp-gm-card.skeleton::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    animation: mp-gm-shimmer 1.5s infinite;
    z-index: 100;
    border-radius: 20px;
}

@keyframes mp-gm-shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* Filters card loading */
.mp-gm-wrapper .mp-gm-filters-card { opacity: 0; transform: translateY(10px); }
.mp-gm-wrapper .mp-gm-filters-card.loaded { opacity: 1; transform: translateY(0); transition: opacity 0.4s ease, transform 0.4s ease; }

/* Quick filters loading */
.mp-gm-wrapper .mp-gm-quick-filters { opacity: 0; }
.mp-gm-wrapper .mp-gm-quick-filters.loaded { opacity: 1; transition: opacity 0.4s ease 0.2s; }

/* Header elements loading */
.mp-gm-wrapper .mp-gm-badge,
.mp-gm-wrapper .mp-gm-header h1,
.mp-gm-wrapper .mp-gm-header p {
    opacity: 0; transform: translateY(10px);
}

.mp-gm-wrapper .mp-gm-badge.loaded,
.mp-gm-wrapper .mp-gm-header h1.loaded,
.mp-gm-wrapper .mp-gm-header p.loaded {
    opacity: 1; transform: translateY(0); transition: opacity 0.4s ease, transform 0.4s ease;
}

/* FontAwesome placeholder */
.mp-gm-wrapper .fa, .mp-gm-wrapper .fas, .mp-gm-wrapper .far, .mp-gm-wrapper .fab { opacity: 0; transition: opacity 0.2s ease; }
.mp-gm-wrapper.fonts-loaded .fa, .mp-gm-wrapper.fonts-loaded .fas, .mp-gm-wrapper.fonts-loaded .far, .mp-gm-wrapper.fonts-loaded .fab { opacity: 1; }

/* ==================== HOVER GLOW EFFECTS ==================== */
.mp-gm-wrapper .mp-gm-card.mp-gm-card-ativo:hover .mp-gm-card-valor { animation: mp-gm-valueGlowSuccess 1.5s ease-in-out infinite alternate; }
.mp-gm-wrapper .mp-gm-card.mp-gm-card-inativo:hover .mp-gm-card-valor { animation: mp-gm-valueGlowDanger 1.5s ease-in-out infinite alternate; }
.mp-gm-wrapper .mp-gm-card.mp-gm-card-escolhido:hover .mp-gm-card-valor { animation: mp-gm-valueGlowPrimary 1.5s ease-in-out infinite alternate; }
.mp-gm-wrapper .mp-gm-card.mp-gm-card-vencido:hover .mp-gm-card-valor { animation: mp-gm-valueGlowOrange 1.5s ease-in-out infinite alternate; }
.mp-gm-wrapper .mp-gm-card.mp-gm-card-churn:hover .mp-gm-card-valor { animation: mp-gm-valueGlowChurn 1.5s ease-in-out infinite alternate; }

@keyframes mp-gm-valueGlowSuccess { from { text-shadow: 0 0 5px rgba(16, 185, 129, 0.3); } to { text-shadow: 0 0 20px rgba(16, 185, 129, 0.6), 0 0 30px rgba(5, 150, 105, 0.4); } }
@keyframes mp-gm-valueGlowDanger { from { text-shadow: 0 0 5px rgba(239, 68, 68, 0.3); } to { text-shadow: 0 0 20px rgba(239, 68, 68, 0.6), 0 0 30px rgba(220, 38, 38, 0.4); } }
@keyframes mp-gm-valueGlowPrimary { from { text-shadow: 0 0 5px rgba(43, 69, 251, 0.3); } to { text-shadow: 0 0 20px rgba(43, 69, 251, 0.6), 0 0 30px rgba(14, 165, 233, 0.4); } }
@keyframes mp-gm-valueGlowOrange { from { text-shadow: 0 0 5px rgba(249, 115, 22, 0.3); } to { text-shadow: 0 0 20px rgba(249, 115, 22, 0.6), 0 0 30px rgba(234, 88, 12, 0.4); } }
@keyframes mp-gm-valueGlowChurn { from { text-shadow: 0 0 5px rgba(185, 28, 28, 0.3); } to { text-shadow: 0 0 20px rgba(185, 28, 28, 0.6), 0 0 30px rgba(153, 27, 27, 0.4); } }

/* ==================== LEAD DROPDOWN FLOAT ==================== */
#mp-gm-lead-dropdown-float {
    position: fixed;
    z-index: 999999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    border: 1px solid rgba(200, 200, 200, 0.5);
    overflow: hidden;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#mp-gm-lead-dropdown-float .mp-gm-lead-status-selector-header {
    padding: 12px 16px;
    background: linear-gradient(135deg, #2b45fb, #018cfb);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

#mp-gm-lead-dropdown-float .mp-gm-lead-status-option {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

#mp-gm-lead-dropdown-float .mp-gm-lead-status-option:last-child { border-bottom: none; }
#mp-gm-lead-dropdown-float .mp-gm-lead-status-option:hover { background: rgba(99, 102, 241, 0.08); }
#mp-gm-lead-dropdown-float .mp-gm-lead-status-option.active { background: rgba(99, 102, 241, 0.12); font-weight: 600; color: #1e293b; }
#mp-gm-lead-dropdown-float .mp-gm-lead-status-option i { width: 16px; text-align: center; }
#mp-gm-lead-dropdown-float .mp-gm-lead-status-option.status-cliente i { color: #10b981; }
#mp-gm-lead-dropdown-float .mp-gm-lead-status-option.status-churn i { color: #ef4444; }
#mp-gm-lead-dropdown-float .mp-gm-lead-status-option.status-lead i { color: #f59e0b; }
#mp-gm-lead-dropdown-float .mp-gm-lead-status-option.status-prospeccao i { color: #3b82f6; }
#mp-gm-lead-dropdown-float .mp-gm-lead-status-option.status-negociacao i { color: #8b5cf6; }

/* ==================== TOOLTIP ==================== */
.mp-gm-card-tooltip {
    position: fixed;
    z-index: 999999;
    background: rgba(30, 41, 59, 0.95);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    max-width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    white-space: nowrap;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.mp-gm-card-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(30, 41, 59, 0.95);
}

/* ==================== AJAX LOADING SYSTEM ==================== */
.mp-gm-skeleton-pulse {
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.1) 100%);
    background-size: 200% 100%;
    animation: mp-gm-skeletonPulse 1.5s ease-in-out infinite;
}

@keyframes mp-gm-skeletonPulse { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Card skeleton */
.mp-gm-card-skeleton {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.mp-gm-card-skeleton::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
    animation: mp-gm-shimmer 1.8s infinite;
}

.mp-gm-card-skeleton .skeleton-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid rgba(148, 163, 184, 0.15); }
.mp-gm-card-skeleton .skeleton-badge { width: 50px; height: 22px; border-radius: 6px; background: rgba(43, 69, 251, 0.15); }
.mp-gm-card-skeleton .skeleton-status { width: 60px; height: 24px; border-radius: 20px; background: rgba(16, 185, 129, 0.15); }
.mp-gm-card-skeleton .skeleton-title { width: 80%; height: 18px; border-radius: 4px; background: rgba(30, 41, 59, 0.15); margin-bottom: 10px; }
.mp-gm-card-skeleton .skeleton-subtitle { width: 40%; height: 14px; border-radius: 4px; background: rgba(100, 116, 139, 0.1); }
.mp-gm-card-skeleton .skeleton-body { padding-top: 10px; }
.mp-gm-card-skeleton .skeleton-price { width: 120px; height: 28px; border-radius: 6px; background: rgba(16, 185, 129, 0.2); margin-bottom: 15px; }
.mp-gm-card-skeleton .skeleton-line { height: 14px; border-radius: 4px; background: rgba(100, 116, 139, 0.1); margin-bottom: 10px; }
.mp-gm-card-skeleton .skeleton-line.w60 { width: 60%; }
.mp-gm-card-skeleton .skeleton-line.w80 { width: 80%; }
.mp-gm-card-skeleton .skeleton-meta { display: flex; gap: 20px; margin-top: 15px; }
.mp-gm-card-skeleton .skeleton-meta-item { width: 80px; height: 12px; border-radius: 3px; background: rgba(100, 116, 139, 0.1); }

/* Fade transitions */
.mp-gm-ajax-fade-out { opacity: 0; transform: translateY(-10px); transition: opacity 0.25s ease, transform 0.25s ease; }

/* Stats update flash */
.mp-gm-stat-item.updating { position: relative; }

.mp-gm-stat-item.updating::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.3) 50%, transparent 100%);
    animation: mp-gm-statFlash 0.6s ease;
    border-radius: 16px;
    pointer-events: none;
}

@keyframes mp-gm-statFlash { 0% { opacity: 0; transform: scaleX(0); } 50% { opacity: 1; transform: scaleX(1); } 100% { opacity: 0; transform: scaleX(1); } }

/* Card entry animation */
.mp-gm-card.mp-gm-ajax-enter { opacity: 0; transform: translateY(30px) scale(0.95); }
.mp-gm-card.mp-gm-ajax-enter-active { opacity: 1; transform: translateY(0) scale(1); transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1), transform 0.5s cubic-bezier(0.23, 1, 0.32, 1); }

/* Progress bar */
.mp-gm-ajax-progress-bar {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mp-gm-primary), var(--mp-gm-secondary), var(--mp-gm-accent));
    z-index: 99999;
    width: 0;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(43, 69, 251, 0.5);
}

.mp-gm-ajax-progress-bar.loading { animation: mp-gm-progressIndeterminate 1.5s ease infinite; }

@keyframes mp-gm-progressIndeterminate { 0% { width: 0; left: 0; } 50% { width: 60%; left: 20%; } 100% { width: 0; left: 100%; } }

/* AJAX empty state */
.mp-gm-ajax-empty-state {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    animation: mp-gm-fadeInUp 0.5s ease;
}

@keyframes mp-gm-fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.mp-gm-ajax-empty-state .empty-icon {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.mp-gm-ajax-empty-state .empty-icon i {
    font-size: 36px;
    background: linear-gradient(135deg, var(--mp-gm-primary), var(--mp-gm-secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* AJAX toast */
.mp-gm-ajax-toast {
    position: fixed;
    bottom: 100px; left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(30, 41, 59, 0.95);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px; font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    display: flex; align-items: center; gap: 10px;
}

.mp-gm-ajax-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.mp-gm-ajax-toast i { font-size: 18px; }
.mp-gm-ajax-toast.success i { color: #10b981; }
.mp-gm-ajax-toast.error i { color: #ef4444; }
.mp-gm-ajax-toast.info i { color: #3b82f6; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1256px) {
    .mp-gm-wrapper .mp-gm-filters-row { grid-template-columns: repeat(2, 1fr); }
    .mp-gm-wrapper .mp-gm-filters-row .mp-gm-filter-group:first-child { grid-column: span 2; }
    .mp-gm-wrapper .mp-gm-filter-actions { grid-column: span 2; justify-content: center; }
}

@media (max-width: 768px) {
    .mp-gm-wrapper { padding: 20px 10px; }
    .mp-gm-wrapper .mp-gm-header h1 { font-size: 28px; }
    .mp-gm-wrapper .mp-gm-stats-bar { gap: 10px; }
    .mp-gm-wrapper .mp-gm-stat-item { padding: 12px 15px; min-width: 140px; }
    .mp-gm-wrapper .mp-gm-stat-item .mp-gm-stat-number { font-size: 20px; }
    .mp-gm-wrapper .mp-gm-filters-card { padding: 20px; }
    .mp-gm-wrapper .mp-gm-filters-row { grid-template-columns: 1fr; }
    .mp-gm-wrapper .mp-gm-filters-row .mp-gm-filter-group:first-child { grid-column: span 1; }
    .mp-gm-wrapper .mp-gm-filter-actions { grid-column: span 1; flex-direction: row; }
    .mp-gm-wrapper .mp-gm-cards-grid { grid-template-columns: 1fr; gap: 20px; padding: 20px 0; }
    .mp-gm-wrapper .mp-gm-card { margin: 10px 0; }
    .mp-gm-wrapper .mp-gm-pagination-info { width: 100%; text-align: center; order: -1; margin-bottom: 10px; }
    .mp-gm-wrapper .mp-gm-selection-bar { padding: 12px 20px; gap: 15px; }
    .mp-gm-wrapper .mp-gm-card-cliente { padding-right: 50px; font-size: 14px; }
    .mp-gm-wrapper .mp-gm-card-status { padding: 4px 8px; font-size: 10px; }
}

/* ==================== MOBILE SPECIFIC (max-width: 640px) ==================== */
@media (max-width: 640px) {
    .mp-gm-wrapper { padding: 16px 2px !important; max-width: 100vw; }
    .mp-gm-wrapper .mp-gm-container { padding: 0 !important; max-width: 100%; }
    .mp-gm-wrapper .mp-gm-cards-grid { padding: 0 !important; gap: 12px !important; max-width: 100%; }
    .mp-gm-wrapper .mp-gm-card { margin: 0 !important; max-width: 100%; }
    .mp-gm-wrapper .mp-gm-header { padding: 16px 0 !important; margin-bottom: 20px; }
    .mp-gm-wrapper .mp-gm-header h1 { font-size: 24px; }
    .mp-gm-wrapper .mp-gm-header p { font-size: 14px; }
    .mp-gm-wrapper .mp-gm-stats-bar { padding: 0 !important; gap: 8px !important; flex-wrap: wrap !important; justify-content: stretch; }
    .mp-gm-wrapper .mp-gm-stat-item { min-width: calc(50% - 4px) !important; max-width: calc(50% - 4px) !important; flex: 1 1 calc(50% - 4px) !important; padding: 10px 12px !important; }
    .mp-gm-wrapper .mp-gm-stat-item i { font-size: 20px; }
    .mp-gm-wrapper .mp-gm-stat-item .mp-gm-stat-number { font-size: 18px; }
    .mp-gm-wrapper .mp-gm-filters-card { margin: 0 0 16px 0 !important; padding: 16px !important; border-radius: 14px; }
    .mp-gm-wrapper .mp-gm-quick-filters { padding: 0 !important; flex-wrap: wrap !important; gap: 8px !important; margin-bottom: 12px; }
    .mp-gm-wrapper .mp-gm-quick-filter-btn { padding: 8px 12px; font-size: 12px; }
    .mp-gm-quick-filter-divider { display: none; }
    .mp-gm-wrapper .mp-gm-card-cliente { max-width: 100% !important; word-break: break-word !important; padding-right: 60px !important; }
    .mp-gm-wrapper .mp-gm-card-header { padding: 15px !important; }
    .mp-gm-wrapper .mp-gm-card-body { padding: 15px !important; }
    .mp-gm-wrapper .mp-gm-selection-bar { left: 8px; right: 8px; transform: none; width: auto; padding: 10px 14px !important; gap: 10px !important; border-radius: 10px; }
    .mp-gm-wrapper .mp-gm-selection-count { font-size: 13px; }
    .mp-gm-wrapper .mp-gm-selection-total { font-size: 14px; }
    .mp-gm-wrapper .mp-gm-pagination { gap: 6px; }
    .mp-gm-wrapper .mp-gm-pagination-btn { min-width: 36px; height: 36px; font-size: 13px; }
    .mp-gm-wrapper .mp-gm-toast { right: 16px; left: 16px; max-width: none; }
    .mp-gm-ajax-toast { left: 16px; right: 16px; transform: translateY(100px); max-width: none; }
    .mp-gm-ajax-toast.show { transform: translateY(0); }
}