.widget-reputation .widget-thermometer {
    grid-area: rep-therm;
  }
.filtros{
  cursor: pointer;
}
.css-class-total{
  white-space: nowrap !important;
}
/* Thermometers */
.thermometer {
    background: url("../img/sprite-therms-medals.607fc1e57ece.svg") 100px 100px no-repeat;
    background-size: cover;
  }
  
  .thermometer.therm-sm {
    width: 200px;
    height: 8px;
  }
  
  .thermometer.therm-md {
    width: 224px;
    height: 11px;
  }
  
  .thermometer.therm-lg {
    width: 310px;
    height: 12px;
  }
  
  .thermometer.therm-sm.therm-x0,
  .thermometer.therm-md.therm-x0,
  .thermometer.therm-lg.therm-x0 {
    background-position: 0 0;
  }
  
  .thermometer.therm-sm.therm-x1 {
    background-position: 0 -22px;
  }
  
  .thermometer.therm-sm.therm-x2 {
    background-position: 0 -43px;
  }
  
  .thermometer.therm-sm.therm-x3 {
    background-position: 0 -65px;
  }
  
  .thermometer.therm-sm.therm-x4 {
    background-position: 0 -87px;
  }
  
  .thermometer.therm-sm.therm-x5 {
    background-position: 0 -108px;
  }
  
  .thermometer.therm-md.therm-x1 {
    background-position: 0 -23px;
  }
  
  .thermometer.therm-md.therm-x2 {
    background-position: 0 -47px;
  }
  
  .thermometer.therm-md.therm-x3 {
    background-position: 0 -71px;
  }
  
  .thermometer.therm-md.therm-x4 {
    background-position: 0 -95px;
  }
  
  .thermometer.therm-md.therm-x5 {
    background-position: 0 -120px;
  }
  
  .thermometer.therm-lg.therm-x1 {
    background-position: 0 -34px;
  }
  
  .thermometer.therm-lg.therm-x2 {
    background-position: 0 -68px;
  }
  
  .thermometer.therm-lg.therm-x3 {
    background-position: 0 -101px;
  }
  
  .thermometer.therm-lg.therm-x4 {
    background-position: 0 -134px;
  }
  
  .thermometer.therm-lg.therm-x5 {
    background-position: 0 -168px;
  }

  
  .status-reputation {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    display: inline-block;
}

.status-reputation.success {
    background-color: green;
}

.status-reputation.error {
    background-color: red;
}

.status-reputation.warning {
    background-color: orange;
}
.username-ml{
    font-size:24px;
    font-weight: 800;
}

.medal-platinum {
    background-size: 105% !important;
    background: url("../img/platinum.svg") no-repeat 0px -1px;
  }
.medal-gold {
    background-size: 105% !important;
    background: url("../img/gold.svg") no-repeat 0px -1px;
  }
.medal-silver {
    background-size: 105% !important;
    background: url("../img/silver.svg") no-repeat 0px -1px;
  }
.paused-item{
    color: rgb(165, 165, 73);
    font-size: 20px !important;
}
.active-item{
    color: green;
    font-size: 20px !important;
}
.closed-item{
    color: red;
    font-size: 20px !important;
}

.customizer-setting{
  display: none !important;
}

/* ============================================
   VEKTOR ML - Modern UI 2026
   ============================================ */

:root {
    --brand-primary: #405189;
    --brand-primary-light: #6a7bb5;
    --brand-primary-dark: #2d3a5e;
    --brand-accent: #299cdb;
    --brand-accent-light: #5bb8e8;
    --brand-success: #0ab39c;
    --brand-success-light: #3cc7b4;
    --brand-warning: #f7b84b;
    --brand-danger: #f06548;
    --brand-danger-light: #f5897a;
    --brand-surface: #f3f6f9;
    --brand-surface-2: #e9ecf1;
    --brand-text: #212529;
    --brand-text-muted: #878a99;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 8px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 12px 24px rgba(15, 23, 42, 0.1), 0 4px 8px rgba(15, 23, 42, 0.04);
    --transition-fast: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cards */
.card {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-md); }
.card-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1rem;
    font-weight: 600;
}
.card-header.card-primary {
    background: var(--brand-primary);
    color: white;
    border-bottom: none;
}
.card-body { padding: 1.25rem; }

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition-fast);
    border: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brand-primary); color: white; }
.btn-success { background: var(--brand-success); color: white; }
.btn-danger { background: var(--brand-danger); color: white; }
.btn-info { background: var(--brand-accent); color: white; }
.btn-warning { background: var(--brand-warning); color: #1a1a2e; }

/* Badges */
.badge {
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: var(--transition-fast);
}
.badge.bg-success { background: var(--brand-success) !important; }
.badge.bg-danger { background: var(--brand-danger) !important; }
.badge.bg-warning { background: var(--brand-warning) !important; color: #1a1a2e !important; }
.badge.bg-info { background: var(--brand-accent) !important; color: white !important; }
.badge.bg-primary { background: var(--brand-primary) !important; }

/* Inputs */
.form-control, .form-select {
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 0.625rem 0.875rem;
    transition: var(--transition-fast);
}
.form-control:focus, .form-select:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-primary) 10%, transparent);
}

/* Tables */
.table thead th {
    background: var(--brand-surface);
    font-weight: 600;
    font-size: 0.875rem;
    color: #4b5563;
    padding: 0.875rem;
    border: none;
}
.table tbody td {
    padding: 0.875rem;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.table tbody tr { transition: var(--transition-fast); }
.table tbody tr:hover { background: color-mix(in srgb, var(--brand-primary) 3%, transparent); }

/* Modals */
.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.modal-header { border-bottom: 1px solid rgba(0, 0, 0, 0.06); padding: 1.25rem; }
.modal-body { padding: 1.25rem; }
.modal-footer { border-top: 1px solid rgba(0, 0, 0, 0.06); }

/* Tabs */
.nav-tabs { border-bottom: 2px solid #e5e7eb; }
.nav-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: #6b7280;
    font-weight: 500;
    transition: var(--transition-fast);
    padding: 0.75rem 1.25rem;
    margin-bottom: -2px;
}
.nav-tabs .nav-link:hover { color: var(--brand-primary); border-bottom-color: color-mix(in srgb, var(--brand-primary) 30%, transparent); }
.nav-tabs .nav-link.active { color: var(--brand-primary); border-bottom-color: var(--brand-primary); background: none; }

/* Progress bars */
.progress { background: #e5e7eb; border-radius: 8px; overflow: hidden; }
.progress-bar { transition: width 600ms cubic-bezier(0.4, 0, 0.2, 1); font-weight: 500; font-size: 0.75rem; }
.progress-bar.bg-success { background: var(--brand-success) !important; }
.progress-bar.bg-warning { background: var(--brand-warning) !important; }
.progress-bar.bg-danger { background: var(--brand-danger) !important; }
.progress-bar.bg-info { background: var(--brand-accent) !important; }
.progress-bar.bg-primary { background: var(--brand-primary) !important; }

/* Alerts */
.alert { border-radius: 8px; }
.alert.alert-light {
    background: var(--brand-surface);
    border: 1px solid #e5e7eb;
    border-left: 4px solid var(--brand-primary);
}

/* Messages - Conversation list */
.conversation-item {
    cursor: pointer;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    border-left: 3px solid transparent;
    transition: var(--transition-fast);
}
.conversation-item:hover { background: #f8f9fa; }
.conversation-item.active {
    border-left-color: var(--brand-primary);
    background: var(--brand-surface);
}
.conversation-item img { border: 2px solid #e9ecef; }
.conversation-item .badge.bg-danger {
    font-size: 0.7rem;
    padding: 0.3rem 0.55rem;
    animation: unreadPulse 2s ease-in-out infinite;
}
@keyframes unreadPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4); }
    50% { box-shadow: 0 0 0 4px rgba(220, 53, 69, 0); }
}

/* Messages - Chat area */
#chatMessages {
    background: var(--brand-surface);
    min-height: 400px;
}
.message-bubble {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8px;
    word-wrap: break-word;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    animation: msgSlide 200ms ease;
}
@keyframes msgSlide { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.message-mine {
    background: #dbeafe;
    border: 1px solid #a5b4fc;
    border-bottom-right-radius: 4px;
    margin-left: auto;
    color: #1e1b4b;
}
.message-theirs {
    background: white;
    border: 1px solid #e2e8f0;
    border-bottom-left-radius: 4px;
    box-shadow: var(--shadow-xs);
    color: var(--brand-text);
}
.message-auto {
    background: #fff3cd;
    font-style: italic;
    font-size: 0.8125rem;
    border-left: 3px solid #ffc107;
}

/* Messages - Product card in chat */
.chat-product-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: var(--transition-fast);
}
.chat-product-card:hover { box-shadow: var(--shadow-md); }
.chat-product-card img { border-radius: 6px; }
.chat-product-card a { color: #1a73e8; }
.chat-product-card a:hover { color: var(--brand-primary); }

/* Messages - Reply box */
.chat-reply-footer {
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    padding: 0.875rem 1rem;
}
.chat-reply-footer .input-group {
    background: white;
    border: 1.5px solid #dee2e6;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-fast);
}
.chat-reply-footer .input-group:focus-within {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.chat-reply-footer .form-control {
    border: none;
    box-shadow: none;
}
.chat-reply-footer .form-control:focus {
    box-shadow: none;
}
.chat-reply-footer .btn-outline-secondary {
    border: none;
    border-right: 1px solid #e5e7eb;
    border-radius: 0;
    color: #6c757d;
}
.chat-reply-footer .btn-outline-secondary:hover {
    background: #f0f0f0;
    color: var(--brand-primary);
    transform: none;
    box-shadow: none;
}
.chat-reply-footer .btn-success {
    border-radius: 0;
    padding: 0.5rem 1rem;
}
.chat-reply-footer .btn-success:hover {
    transform: none;
}
.chat-reply-footer small {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Pagination */
.pagination { gap: 0.25rem; }
.page-link { border-radius: 6px; transition: var(--transition-fast); }
.page-link:hover { background: color-mix(in srgb, var(--brand-primary) 10%, transparent); border-color: var(--brand-primary); color: var(--brand-primary); }

/* Checkboxes */
.form-check-input { width: 1.15rem; height: 1.15rem; border-radius: 4px; transition: var(--transition-fast); }
.form-check-input:checked { background: var(--brand-primary); border-color: color-mix(in srgb, var(--brand-primary) 85%, black); }

/* Accordion */
.accordion { border-radius: 8px; overflow: hidden; }
.accordion-button { font-weight: 500; transition: var(--transition-fast); }
.accordion-button:not(.collapsed) { background: color-mix(in srgb, var(--brand-primary) 5%, transparent); color: var(--brand-primary); box-shadow: none; }

/* Responsive */
@media (max-width: 768px) {
    .card { border-radius: 8px; }
    .card-body { padding: 1rem; }
    .message-mine, .message-theirs { max-width: 95% !important; }
}

/* Loading States */
.loading-container { text-align: center; padding: 3rem 1rem; }
.loading-container .spinner { width: 2.5rem; height: 2.5rem; border: 3px solid #e2e8f0; border-top-color: var(--brand-primary); border-radius: 50%; animation: spin 0.8s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-container p { color: var(--brand-text-muted); margin-top: 1rem; font-size: 0.9rem; }

/* Empty States */
.empty-state { text-align: center; padding: 3rem 1rem; }
.empty-state .empty-icon { font-size: 3.5rem; color: #cbd5e1; margin-bottom: 1rem; display: block; }
.empty-state h5 { color: var(--brand-text); font-weight: 600; margin-bottom: 0.5rem; }
.empty-state p { color: var(--brand-text-muted); font-size: 0.9rem; max-width: 400px; margin: 0 auto; }
.empty-state .btn { margin-top: 1rem; }

/* Skeleton loading */
.skeleton { background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%); background-size: 200% 100%; animation: skeleton-loading 1.5s ease-in-out infinite; border-radius: 4px; height: 1rem; margin-bottom: 0.5rem; }
@keyframes skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Accessibility */
:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================
   Mobile Responsive Improvements
   ============================================ */
@media (max-width: 992px) {
    /* Dashboard cards stack properly */
    .row > [class*="col-sm-4"] { margin-bottom: 1rem; }

    /* Tables: make them scrollable with smooth touch */
    .table-responsive {
        -webkit-overflow-scrolling: touch;
        position: relative;
    }

    /* Reduce card padding */
    .card-body { padding: 0.875rem; }
    .card-header { padding: 0.75rem; font-size: 0.9rem; }

    /* Stat values smaller */
    h3 { font-size: 1.25rem; }

    /* Fixed bottom action bar for mobile */
    .btn-group.float-right {
        position: sticky; bottom: 0;
        background: white; padding: 0.5rem;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
        z-index: 10;
    }
}

@media (max-width: 576px) {
    /* Even smaller screens */
    .metric-value, h2 { font-size: 1.5rem; }
    .badge { font-size: 0.7rem; padding: 0.3rem 0.5rem; }

    /* Messages: full width bubbles */
    .message-mine, .message-theirs { max-width: 95% !important; }

    /* Questions: stack product image */
    .d-flex { flex-wrap: wrap; }

    /* Sidebar overlay on mobile (not push) */
    .app-menu { z-index: 1050; }

    /* Conversations list full height */
    #conversationList { max-height: 400px; }
    #chatMessages { max-height: 350px; }
}

/* Touch-friendly elements */
@media (hover: none) and (pointer: coarse) {
    .btn { min-height: 44px; min-width: 44px; }
    .form-control, .form-select { min-height: 44px; font-size: 16px; }
    .nav-tabs .nav-link { padding: 0.875rem 1rem; }
    .conversation-item { padding: 1rem; }
    .dropdown-item { padding: 0.75rem 1rem; }
}

/* ============================================
   Report Pages
   ============================================ */

/* Report metric cards */
.report-metric-card { text-align: center; padding: 1.5rem 1rem; border-radius: 12px; }
.report-metric-card h2, .report-metric-card h3 { font-weight: 700; margin-bottom: 0.25rem; }
.report-metric-card small { color: #6c757d; font-weight: 500; }
.report-metric-card.positive { background: #d1fae5; color: #064e3b; }
.report-metric-card.positive small { color: #065f46; }
.report-metric-card.negative { background: #fee2e2; color: #7f1d1d; }
.report-metric-card.negative small { color: #991b1b; }
.report-metric-card.neutral { background: var(--brand-surface); color: #334155; }
.report-metric-card.info { background: #dbeafe; color: #312e81; }
.report-metric-card.info small { color: #3730a3; }
.report-metric-card.warning { background: #fef3c7; color: #78350f; }
.report-metric-card.accent { background: #cffafe; color: #164e63; }

/* Report tables */
.report-table thead th { background: #f8f9fa; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; color: #495057; }
.report-table tbody td { vertical-align: middle; }

/* Quick filter buttons */
.filter-btn-group .btn { border-radius: 20px; padding: 0.4rem 1rem; font-size: 0.8rem; font-weight: 500; }
.filter-btn-group .btn.active { background: var(--brand-primary); color: white; }

/* ============================================
   DataTable Improvements
   ============================================ */
.dataTables_wrapper { font-size: 0.875rem; }
.dataTables_wrapper .dataTables_info { font-size: 0.8rem; color: #6c757d; }
.dataTables_wrapper .dataTables_paginate .paginate_button { border-radius: 6px !important; margin: 0 2px; }
.dataTables_wrapper .dataTables_paginate .paginate_button.current { background: var(--brand-primary) !important; color: white !important; border: none !important; }

/* Filter card header */
.card-header.filtros { background: var(--brand-primary-dark) !important; cursor: pointer; }
.card-header.filtros .card-title { color: white; font-size: 0.95rem; letter-spacing: 0.025em; }
.card-header.filtros i { font-size: 1.1rem; }

/* Filter form labels */
.filter-section label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.35rem;
}
.filter-section .form-group { margin-bottom: 1rem; }
.filter-section .form-control,
.filter-section .form-select { font-size: 0.875rem; }

/* Filter action buttons row */
.filter-actions {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 1rem;
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
}
.filter-actions .btn {
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 0.85rem;
}

/* Action buttons in DataTable */
.btn-group .btn-sm { padding: 0.25rem 0.5rem; font-size: 0.75rem; border-radius: 4px; }

/* Status badges in tables */
.badge-status { padding: 0.35rem 0.65rem; border-radius: 4px; font-size: 0.75rem; font-weight: 600; }

/* Bulk action bar */
.bulk-actions {
    background: var(--brand-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.bulk-actions .btn {
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.4rem 0.85rem;
}

/* Ganancia column */
.text-success.fw-bold { color: #28a745 !important; }
.text-danger.fw-bold { color: #dc3545 !important; }

/* ============================================
   Dashboard Specific
   ============================================ */
.dashboard-card {
    min-height: 280px;
}
.dashboard-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.dashboard-card-sm {
    min-height: 200px;
}
.dashboard-card-sm .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Metric typography */
.metric-big {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}
.metric-mid {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}
.metric-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.metric-sublabel {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.15rem;
}
.metric-change {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Stat rows (for key-value pairs in cards) */
.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.stat-row:last-child {
    border-bottom: none;
}

/* Metric pair (number + label stacked, side by side) */
.metric-pair {
    text-align: center;
    flex: 1;
    padding: 0.5rem 0;
}
.metric-pair + .metric-pair {
    border-left: 1px solid rgba(0,0,0,0.06);
}

/* Dashboard alert bar */
.dashboard-alert {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.dashboard-alert .badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
}

/* Dashboard section dividers */
.dash-divider {
    border: 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin: 0.75rem 0;
}

/* Performance card stat pair */
.perf-stat {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.perf-stat:last-child {
    border-bottom: none;
}

/* Shipping section */
.shipping-section .nav-tabs {
    margin-bottom: 1.25rem;
}
.shipping-section .table th,
.shipping-section .table td {
    font-size: 0.8rem;
    padding: 0.5rem 0.65rem;
}

/* Funnel step */
.funnel-step {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 0;
    border-radius: 6px;
    color: #fff;
    text-align: center;
    margin: 0 auto;
}
.funnel-rate {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
}

/* Reputation card */
.rep-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}
.rep-stats .metric-pair {
    border-left: none;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
}

/* Responsive dashboard */
@media (max-width: 768px) {
    .dashboard-card,
    .dashboard-card-sm { min-height: auto; }
    .metric-big { font-size: 1.5rem; }
    .metric-mid { font-size: 1.25rem; }
    .metric-pair + .metric-pair {
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.06);
        padding-top: 0.5rem;
        margin-top: 0.5rem;
    }
    .rep-stats { grid-template-columns: 1fr; }
}
