/**
 * PROMOTERS SECTION - COMPLETE REDESIGN
 * Modern, Beautiful & Professional Design
 * @version 2.0.0
 */

/* ==========================================================================
   VARIABLES & GLOBAL STYLES
   ========================================================================== */

:root {
    --promoter-primary: #667eea;
    --promoter-secondary: #764ba2;
    --promoter-success: #10b981;
    --promoter-danger: #ef4444;
    --promoter-warning: #f59e0b;
    --promoter-info: #3b82f6;
    --promoter-card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --promoter-hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   PROMOTERS TAB - MAIN CONTAINER
   ========================================================================== */

#promoters {
    width: 100%;
    max-width: 100%;
    padding: clamp(15px, 3vw, 25px);
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    min-height: 100vh;
}

/* ==========================================================================
   ANALYTICS DASHBOARD CARD
   ========================================================================== */

#promoters .mec-overview-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--promoter-card-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    overflow: hidden;
}

#promoters .mec-overview-card:hover {
    box-shadow: var(--promoter-hover-shadow);
    transform: translateY(-2px);
}

#promoters .mec-overview-card-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: clamp(12px, 2vw, 20px);
    padding: clamp(15px, 2.5vw, 25px);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

#promoters .mec-overview-card-title {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 800;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 12px;
}

#promoters .mec-overview-card-title i {
    font-size: 1.3em;
    background: linear-gradient(135deg, var(--promoter-primary) 0%, var(--promoter-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   ANALYTICS STATS GRID
   ========================================================================== */

#promoters .mec-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: clamp(15px, 2.5vw, 25px);
    margin: clamp(20px, 3vw, 30px) 0;
}

#promoters .mec-stat-card {
    position: relative;
    padding: clamp(20px, 3vw, 30px);
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

#promoters .mec-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

#promoters .mec-stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

#promoters .mec-stat-card h4 {
    font-size: clamp(12px, 1.8vw, 14px);
    font-weight: 600;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

#promoters .mec-stat-card .value {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 900;
    margin: 0;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

/* Specific gradient backgrounds */
#promoters .mec-stat-card:nth-child(1) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

#promoters .mec-stat-card:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

#promoters .mec-stat-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

#promoters .mec-stat-card:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* ==========================================================================
   PERIOD SELECTOR & CONTROLS
   ========================================================================== */

#promoters .mec-overview-card-header>div[style*="display: flex"] {
    display: flex !important;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

#mec-analytics-period {
    min-width: 160px;
    padding: 12px 16px !important;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 10px;
    background: white;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#mec-analytics-period:hover {
    border-color: var(--promoter-primary);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.2);
}

#mec-analytics-period:focus {
    outline: none;
    border-color: var(--promoter-primary);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

/* Refresh Button */
button[onclick*="refreshAnalytics"],
#refresh-analytics-btn {
    padding: 12px 20px !important;
    background: linear-gradient(135deg, var(--promoter-primary) 0%, var(--promoter-secondary) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    box-shadow: 0 4px 6px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

button[onclick*="refreshAnalytics"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(102, 126, 234, 0.4);
}

button[onclick*="refreshAnalytics"] i {
    font-size: 16px;
    transition: transform 0.6s ease;
}

button[onclick*="refreshAnalytics"]:hover i {
    transform: rotate(180deg);
}

/* ==========================================================================
   CHARTS CONTAINER
   ========================================================================== */

#promoters div[style*="grid-template-columns: repeat(auto-fit, minmax(400px, 1fr))"] {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr)) !important;
    gap: clamp(20px, 3vw, 30px) !important;
    margin-top: clamp(25px, 3vw, 35px) !important;
}

#promoters div[style*="grid-template-columns: repeat(auto-fit, minmax(400px, 1fr))"]>div {
    background: white !important;
    padding: clamp(20px, 3vw, 30px) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(102, 126, 234, 0.1);
}

#promoters div[style*="grid-template-columns: repeat(auto-fit, minmax(400px, 1fr))"]>div:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.12) !important;
    border-color: rgba(102, 126, 234, 0.3);
}

#promoters canvas {
    max-height: 280px !important;
    width: 100% !important;
}

/* ==========================================================================
   PROMOTER MANAGEMENT SECTION
   ========================================================================== */

#promoters div[style*="margin-bottom: 30px"] .mec-overview-card-header {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.08) 100%);
    border-bottom: 2px solid rgba(16, 185, 129, 0.2);
}

/* Add New Promoter Button */
button[onclick*="openPromoterModal"],
#create-promoter-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: clamp(12px, 2vw, 14px) clamp(20px, 3vw, 28px);
    border-radius: 12px;
    font-weight: 800;
    font-size: clamp(14px, 2vw, 16px);
    cursor: pointer;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    box-shadow: 0 6px 12px rgba(16, 185, 129, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

button[onclick*="openPromoterModal"]::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;
}

button[onclick*="openPromoterModal"]:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 20px rgba(16, 185, 129, 0.4);
}

button[onclick*="openPromoterModal"]:hover::before {
    left: 100%;
}

button[onclick*="openPromoterModal"] i {
    font-size: 18px;
}

/* ==========================================================================
   SEARCH & FILTERS TOOLBAR
   ========================================================================== */

#promoters .mec-toolbar,
#promoter-search-container {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(12px, 2vw, 16px);
    align-items: center;
    margin-bottom: clamp(20px, 3vw, 25px);
    padding: clamp(15px, 2.5vw, 20px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

#promoters .mec-search-box,
#promoter-search-container input[type="text"] {
    flex: 1 1 auto;
    min-width: min(100%, 250px);
    padding: 12px 18px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: white;
}

#promoters .mec-search-box:focus {
    outline: none;
    border-color: var(--promoter-primary);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

#promoters .mec-search-box::placeholder {
    color: #9ca3af;
}

/* Export Button */
#export-promoters-btn,
button[onclick*="exportPromoters"] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-height: 48px !important;
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3) !important;
    transition: all 0.3s ease !important;
    white-space: nowrap;
}

#export-promoters-btn:hover,
button[onclick*="exportPromoters"]:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.4) !important;
}

#export-promoters-btn i,
button[onclick*="exportPromoters"] i {
    font-size: 16px;
}

/* ==========================================================================
   PROMOTERS TABLE
   ========================================================================== */

#mec-promoter-list-container {
    width: 100%;
    max-width: 100%;
    margin-top: clamp(20px, 3vw, 30px) !important;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

#mec-promoter-list-container .mec-table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
}

#mec-promoter-list-container table {
    width: 100%;
    min-width: 900px;
    border-collapse: separate;
    border-spacing: 0;
}

#mec-promoter-list-container thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

#mec-promoter-list-container thead th {
    padding: clamp(16px, 2.5vw, 20px) clamp(12px, 2vw, 16px);
    text-align: left;
    font-weight: 700;
    font-size: clamp(13px, 1.8vw, 15px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

#mec-promoter-list-container thead th:first-child {
    border-top-left-radius: 12px;
}

#mec-promoter-list-container thead th:last-child {
    border-top-right-radius: 12px;
}

#mec-promoter-list-container tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e5e7eb;
}

#mec-promoter-list-container tbody tr:hover {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    transform: scale(1.01);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

#mec-promoter-list-container tbody tr:last-child {
    border-bottom: none;
}

#mec-promoter-list-container tbody td {
    padding: clamp(14px, 2.5vw, 18px) clamp(12px, 2vw, 16px);
    vertical-align: middle;
    font-size: clamp(13px, 1.8vw, 14px);
    color: #374151;
}

/* Promoter Avatar */
#mec-promoter-list-container img[style*="border-radius"],
#mec-promoter-list-container .promoter-avatar {
    width: clamp(40px, 6vw, 48px) !important;
    height: clamp(40px, 6vw, 48px) !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 3px solid var(--promoter-primary) !important;
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3) !important;
    transition: all 0.3s ease !important;
}

#mec-promoter-list-container img[style*="border-radius"]:hover {
    transform: scale(1.15) rotate(5deg);
    border-color: var(--promoter-secondary);
}

/* Promoter Info Cell */
#mec-promoter-list-container td>div {
    display: flex;
    align-items: center;
    gap: 14px;
}

#mec-promoter-list-container td>div>div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#mec-promoter-list-container .promoter-name {
    font-weight: 700;
    font-size: clamp(14px, 2vw, 16px);
    color: #1f2937;
}

#mec-promoter-list-container .promoter-email {
    font-size: clamp(11px, 1.5vw, 12px);
    color: #6b7280;
}

/* Magic Link */
#mec-promoter-list-container .mec-magic-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 14px !important;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%) !important;
    color: #1e40af !important;
    border-radius: 10px !important;
    font-size: clamp(11px, 1.5vw, 12px) !important;
    font-family: 'Courier New', monospace !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    max-width: 220px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    border: 2px solid rgba(59, 130, 246, 0.2) !important;
}

#mec-promoter-list-container .mec-magic-link:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.3) !important;
}

#mec-promoter-list-container .mec-magic-link i {
    font-size: 14px !important;
}

/* Total Sales Display */
#mec-promoter-list-container td[data-label="Total Sales"],
#mec-promoter-list-container .promoter-total-sales {
    font-weight: 900 !important;
    font-size: clamp(15px, 2.2vw, 18px) !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Commission & Stats */
#mec-promoter-list-container .promoter-commission {
    padding: 6px 12px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    display: inline-block;
}

/* ==========================================================================
   ACTION BUTTONS
   ========================================================================== */

#mec-promoter-list-container .mec-action-group {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

#mec-promoter-list-container .mec-action-group .mec-btn {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    min-height: 38px;
    white-space: nowrap;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#mec-promoter-list-container .mec-action-group .mec-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

#mec-promoter-list-container .mec-action-group .mec-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.4);
}

#mec-promoter-list-container .mec-action-group .mec-btn-outline {
    background: white;
    border: 2px solid #d1d5db;
    color: #6b7280;
}

#mec-promoter-list-container .mec-action-group .mec-btn-outline:hover {
    border-color: #ef4444;
    color: #ef4444;
    background: #fef2f2;
}

/* ==========================================================================
   PROMOTER MODAL IMPROVEMENTS
   ========================================================================== */

#mec-promoter-modal .mec-modal-content {
    max-width: min(750px, calc(100vw - 20px)) !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

#mec-promoter-modal .mec-modal-content h3 {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--promoter-primary) 0%, var(--promoter-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

#mec-promoter-modal .mec-form-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: clamp(18px, 2.5vw, 24px) !important;
}

#mec-promoter-modal .mec-form-group {
    width: 100%;
}

#mec-promoter-modal .mec-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: clamp(13px, 2vw, 15px);
    color: #374151;
}

#mec-promoter-modal .mec-form-group .mec-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

#mec-promoter-modal .mec-form-group .mec-input:focus {
    outline: none;
    border-color: var(--promoter-primary);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

/* Assign Events Section */
#mec-promoter-modal div[style*="max-height: 200px"] {
    max-height: 220px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    padding: 12px;
    background: #f9fafb;
    border-radius: 10px;
}

#mec-promoter-modal div[style*="max-height: 200px"] label {
    padding: 12px !important;
    cursor: pointer;
    border-radius: 8px !important;
    margin-bottom: 6px;
    display: flex !important;
    align-items: center;
}

#mec-promoter-modal div[style*="max-height: 200px"] label:hover {
    background: #e0e7ff !important;
}

#mec-promoter-modal div[style*="max-height: 200px"] input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    accent-color: var(--promoter-success) !important;
}

/* ==========================================================================
   SAFARI iOS FIXES
   ========================================================================== */

@supports (-webkit-touch-callout: none) {

    #mec-promoter-modal .mec-modal-footer,
    .mec-modal-overlay .mec-modal-footer {
        padding-bottom: max(env(safe-area-inset-bottom, 20px), 60px) !important;
    }
}

/* Modal Footer */
.mec-modal-footer {
    padding: clamp(20px, 3vw, 25px);
    background: linear-gradient(to top, white 90%, rgba(255, 255, 255, 0.95) 100%);
    border-top: 2px solid #e5e7eb;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.mec-modal-footer .mec-btn {
    min-height: 50px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
}

.mec-modal-footer .mec-btn-primary {
    background: linear-gradient(135deg, var(--promoter-success) 0%, #059669 100%);
    box-shadow: 0 6px 12px rgba(16, 185, 129, 0.3);
}

.mec-modal-footer .mec-btn-outline {
    background: white !important;
    border: 2px solid #d1d5db !important;
    color: #6b7280 !important;
}

.mec-modal-footer .mec-btn-outline:hover {
    border-color: #ef4444 !important;
    color: #ef4444 !important;
    background: #fef2f2 !important;
}

/* ==========================================================================
   EMPTY STATE & LOADING
   ========================================================================== */

#mec-promoter-list-container .mec-empty-state {
    padding: clamp(50px, 8vw, 80px) 30px;
    text-align: center;
    background: linear-gradient(135deg, #f9fafb 0%, #e0e7ff 100%);
    border-radius: 16px;
}

#mec-promoter-list-container .mec-empty-state i {
    font-size: clamp(48px, 8vw, 64px);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--promoter-primary) 0%, var(--promoter-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#mec-promoter-list-container .mec-empty-state p {
    font-size: clamp(16px, 2.5vw, 18px);
    color: #6b7280;
    font-weight: 600;
}

/* Loading Spinner */
.mec-empty-state .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE
   ========================================================================== */

@media (max-width: 1024px) {
    #promoters .mec-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #promoters div[style*="grid-template-columns: repeat(auto-fit, minmax(400px, 1fr))"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    #promoters {
        padding: 15px;
    }

    #promoters .mec-stats-grid {
        grid-template-columns: 1fr;
    }

    #promoters .mec-overview-card-header {
        flex-direction: column;
        align-items: stretch !important;
    }

    #promoters .mec-overview-card-header>div[style*="display: flex"] {
        flex-direction: column;
    }

    #mec-analytics-period,
    button[onclick*="refreshAnalytics"],
    button[onclick*="openPromoterModal"],
    #export-promoters-btn {
        width: 100%;
        justify-content: center;
    }

    #mec-promoter-modal .mec-form-grid {
        grid-template-columns: 1fr !important;
    }

    #mec-promoter-list-container table {
        min-width: 750px;
        font-size: 13px;
    }

    #mec-promoter-list-container .mec-action-group {
        flex-direction: column;
        gap: 6px;
    }

    #mec-promoter-list-container .mec-action-group .mec-btn {
        width: 100%;
    }

    .mec-modal-footer {
        flex-direction: column;
        padding-bottom: 80px !important;
    }

    .mec-modal-footer .mec-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    #mec-promoter-list-container table {
        min-width: 650px;
        font-size: 12px;
    }

    #mec-promoter-list-container thead th,
    #mec-promoter-list-container tbody td {
        padding: 12px 10px;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {

    #export-promoters-btn,
    button[onclick*="exportPromoters"],
    button[onclick*="openPromoterModal"],
    .mec-action-group {
        display: none !important;
    }

    #promoters {
        background: white;
    }

    #mec-promoter-list-container .mec-table-responsive {
        overflow: visible;
    }
}