/* =========================
   RESET
========================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body { height: 100%; }

:root{
  --bg0:#0e0e0e;
  --bg1:#121212;
  --bg2:#1f1f1f;
  --panel:#181818;
  --panel2:#1a1a1a;
  --line:#222;
  --text:#fff;
  --muted:#bbb;
  --plex:#e5a00d;
  --plex2:#ffb800;

  --nav-h: 86px;
  --nav-pad: 40px;

  /* NAVBAR LOGO */
  --logo-nav-h: 54px;
  --logo-nav-maxw: 220px;

  /* LOGIN LOGO */
  --logo-login-h: 110px;
  --logo-login-maxw: 380px;
}

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg1) 30%, var(--bg0) 100%);
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =========================
   NAVBAR (connecté uniquement)
========================= */
.nav-center {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: #bbb;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  transition: 0.2s ease;
}

.nav-link:hover {
  color: #fff;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--plex);
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.navbar{
  height: var(--nav-h);
  padding: 0 var(--nav-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  border-bottom: 1px solid var(--line);
}

.brand{
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}

.brand-logo{
  height: var(--logo-nav-h);
  max-height: var(--logo-nav-h);
  width: auto;
  max-width: var(--logo-nav-maxw);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 6px rgba(0,0,0,.5));
}

.nav-right{
  display: flex;
  align-items: center;
  gap: 18px;
}

.username{
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.logout-btn{
  background: var(--plex);
  color: #000;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: .2s ease;
}

.logout-btn:hover{
  background: var(--plex2);
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(229,160,13,.35);
}

/* =========================
   CONTENT
========================= */
.content{
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* =========================
   LOGIN PAGE
========================= */

.login-page{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px; /* 🔥 espace contrôlé logo → card */
  padding: 40px 20px;
}

/* Logo login */
.login-logo img{
  height: var(--logo-login-h);
  max-height: var(--logo-login-h);
  width: auto;
  max-width: var(--logo-login-maxw);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.45));
}

/* Carte login */
.login-card{
  width: min(440px, 100%);
  padding: 40px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
}

.login-card h1{
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
}

.plex-btn{
  display: inline-block;
  background: var(--plex);
  color: #000;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  transition: .2s ease;
}

.plex-btn:hover{
  background: var(--plex2);
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(229,160,13,.35);
}

/* =========================
   DASHBOARD
========================= */

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.user-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--plex);
  box-shadow: 0 6px 16px rgba(229, 160, 13, 0.2);
  flex-shrink: 0;
}

.header-text {
  flex: 1;
}

.dashboard-greeting {
  font-size: 13px;
  color: #666;
  font-weight: 500;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.dashboard-title{
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

/* ========================
   HERO CARDS
======================== */

.hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.hero-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  border-radius: 0;
}

.hero-card-profil {
  background: linear-gradient(135deg, #1a1822 0%, #17152a 100%);
  border-color: rgba(229, 160, 13, 0.2);
}

.hero-card-profil::before {
  background: linear-gradient(180deg, #e5a00d, #ffb800);
}

.hero-card-profil:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 160, 13, 0.55);
  box-shadow: 0 20px 60px rgba(229, 160, 13, 0.13);
}

.hero-card-demandes {
  background: linear-gradient(135deg, #151a22 0%, #121e2a 100%);
  border-color: rgba(33, 150, 243, 0.2);
}

.hero-card-demandes::before {
  background: linear-gradient(180deg, #2196f3, #00bcd4);
}

.hero-card-demandes:hover {
  transform: translateY(-5px);
  border-color: rgba(33, 150, 243, 0.55);
  box-shadow: 0 20px 60px rgba(33, 150, 243, 0.12);
}

.hero-card-content {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 22px 22px 26px;
  position: relative;
  z-index: 1;
}

.hero-card-icon-wrap {
  flex-shrink: 0;
}

.hero-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(229, 160, 13, 0.45);
  box-shadow: 0 4px 14px rgba(229, 160, 13, 0.15);
}

.hero-avatar-placeholder,
.hero-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.hero-avatar-placeholder {
  background: rgba(229, 160, 13, 0.12);
  border: 1px solid rgba(229, 160, 13, 0.25);
}

.hero-icon {
  background: rgba(33, 150, 243, 0.12);
  border: 1px solid rgba(33, 150, 243, 0.25);
}

.hero-card-info {
  flex: 1;
  min-width: 0;
}

.hero-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero-card-profil .hero-card-label {
  color: rgba(229, 160, 13, 0.65);
}

.hero-card-demandes .hero-card-label {
  color: rgba(33, 150, 243, 0.65);
}

.hero-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-card-desc {
  font-size: 12px;
  color: #666;
  margin: 0;
}

.hero-card-arrow {
  font-size: 20px;
  color: #444;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hero-card-profil:hover .hero-card-arrow {
  color: var(--plex);
  transform: translateX(5px);
}

.hero-card-demandes:hover .hero-card-arrow {
  color: #2196f3;
  transform: translate(4px, -4px);
}

/* Logo Seerr dans la navbar */
.nav-seerr-logo {
  width: 16px;
  height: 16px;
  object-fit: contain;
  vertical-align: middle;
  margin-bottom: 2px;
  border-radius: 3px;
}

/* Logo Seerr dans la hero card */
.hero-icon--seerr {
  background: transparent;
  border: none;
  padding: 0;
}
.hero-icon-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(33, 150, 243, 0.45);
  box-shadow: 0 4px 14px rgba(33, 150, 243, 0.15);
}

/* Logo Seerr dans les card-header (widget overseerr) */
.card-header-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 2px;
  margin-bottom: 2px;
  border-radius: 4px;
}

/* nav link accent for demandes */
.nav-link-demandes {
  color: rgba(33, 150, 243, 0.8);
}
.nav-link-demandes:hover {
  color: #60c4ff;
}
.nav-link-demandes::after {
  background: #2196f3;
}

/* =========================
   NAVBAR SUBSCRIPTION PILL
========================= */
.nav-sub-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid #333;
  background: #1a1a1a;
  color: #aaa;
  transition: transform .15s ease, box-shadow .15s ease;
  letter-spacing: .3px;
}
.nav-sub-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
/* Variantes dynamiques */
.nav-sub-pill--active   { border-color: #4caf50; color: #4caf50; background: rgba(76,175,80,.1); }
.nav-sub-pill--warning  { border-color: #ff9800; color: #ff9800; background: rgba(255,152,0,.1); }
.nav-sub-pill--expired  { border-color: #f44336; color: #f44336; background: rgba(244,67,54,.1); }
.nav-sub-pill--unlimited{ border-color: #2196f3; color: #2196f3; background: rgba(33,150,243,.1); }
.nav-sub-pill--not_found{ border-color: #555;    color: #666;    background: transparent; }

/* Profil sub card — colle le style abonnement dans la grille profil */
.profil-sub-card.active  { border-left: 4px solid #4caf50; }
.profil-sub-card.warning { border-left: 4px solid #ff9800; }
.profil-sub-card.expired { border-left: 4px solid #f44336; }
.profil-sub-card.unlimited { border-left: 4px solid #2196f3; }
.profil-sub-card.not_found { border-left: 4px solid #555; }

.cards-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.card{
  background: var(--panel2);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: .25s ease;
}

.card:hover{
  transform: translateY(-4px);
  border-color: #333;
  box-shadow: 0 15px 50px rgba(0,0,0,.45);
}

.card h3{
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}

.card p{
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== DASHBOARD SUBSCRIPTION PREVIEW ===== */

.dashboard-card {
  text-decoration: none;
  color: inherit;
  transition: all .25s ease;
  cursor: pointer;
}

.dashboard-card:hover {
  transform: translateY(-4px);
  border-color: #333;
  box-shadow: 0 15px 40px rgba(0,0,0,.45);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.status-mini {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

/* couleurs dynamiques */

.status-mini.active {
  background: #1f3d1f;
  color: #4caf50;
}

.status-mini.warning {
  background: #3d2f1f;
  color: #ff9800;
}

.status-mini.expired {
  background: #3d1f1f;
  color: #f44336;
}

.status-mini.unlimited {
  background: #1f2d3d;
  color: #2196f3;
}

.status-mini.loading {
  background: #2a2a2a;
  color: #aaa;
}

.subscription-days {
  font-size: 15px;
  margin-top: 8px;
}

.subscription-expired {
  color: #f44336;
  font-weight: 600;
}

.subscription-unlimited {
  color: #2196f3;
  font-weight: 600;
}

/* =========================
   ABONNEMENT
========================= */

.subscription-card {
  max-width: 600px;
  padding: 28px;
  position: relative;
}

/* Layout ligne label / valeur */
.subscription-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.subscription-row .label {
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
}

.subscription-row .value {
  font-weight: 600;
  font-size: 15px;
}

/* Badge */
.status-badge {
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
}

.card.loading {
  opacity: 0.7;
}

.card.active h3 { color: #4caf50; }
.card.warning h3 { color: #ff9800; }
.card.expired h3 { color: #f44336; }


/* Bordure latérale selon statut */
.subscription-card.active {
  border-left: 5px solid #4caf50;
}

.subscription-card.warning {
  border-left: 5px solid #ff9800;
}

.subscription-card.expired {
  border-left: 5px solid #f44336;
}

.subscription-card.unlimited {
  border-left: 5px solid #2196f3;
}

.subscription-card.not_found {
  border-left: 5px solid #777;
}

/* Couleurs badge */
.status-badge.active {
  background: #1f3d1f;
  color: #4caf50;
}

.status-badge.warning {
  background: #3d2f1f;
  color: #ff9800;
}

.status-badge.expired {
  background: #3d1f1f;
  color: #f44336;
}

.status-badge.unlimited {
  background: #1f2d3d;
  color: #2196f3;
}

.status-badge.not_found {
  background: #2a2a2a;
  color: #aaa;
}

/* ===== PROGRESS BAR ===== */

.progress-wrapper {
  margin-top: 20px;
}

.progress-wrapper .progress-bar {
  margin-top: 0;   /* évite le double-margin avec progress-wrapper */
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #222;
  border-radius: 8px;
  margin-top: 15px;
  overflow: hidden;
}

.progress {
  height: 100%;
  border-radius: 8px;
  transition: width 0.4s ease;
}

/* Couleur dynamique selon statut */
.subscription-card.active .progress,
.profil-sub-card.active .progress {
  background: linear-gradient(90deg, #4caf50, #66bb6a);
}

.subscription-card.warning .progress,
.profil-sub-card.warning .progress {
  background: linear-gradient(90deg, #ff9800, #ffb74d);
}

.subscription-card.expired .progress,
.profil-sub-card.expired .progress {
  background: linear-gradient(90deg, #f44336, #e57373);
}

.subscription-card.unlimited .progress,
.profil-sub-card.unlimited .progress {
  background: linear-gradient(90deg, #2196f3, #42a5f5);
}

.subscription-card.not_found .progress,
.profil-sub-card.not_found .progress {
  background: #555;
}

/* =========================
   MOBILE VERSION PREMIUM
========================= */

@media (max-width: 768px){

  .navbar{
    height:65px;
    padding:0 16px;
  }

  .brand-logo{
    height:40px;
    max-width:150px;
  }

  .nav-center{
    gap:16px;
  }

  .nav-link{
    font-size:14px;
  }

  .logout-btn{
    padding:6px 12px;
    font-size:13px;
  }

  .content{
    padding:30px 18px;
  }

  .dashboard-header {
    gap: 12px;
    margin-bottom: 30px;
  }

  .user-avatar {
    width: 60px;
    height: 60px;
  }

  .dashboard-title{
    font-size:22px;
    margin-bottom:24px;
  }

  .cards-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .card{
    padding:20px;
  }

  .card h3{
    font-size:16px;
  }

  .card p{
    font-size:13px;
  }

  .subscription-row{
    flex-direction:column;
    gap:6px;
  }

}

/* ======================================================
   MOBILE NAVIGATION PRO
====================================================== */

.desktop-menu {
  display: flex;
}

.burger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
}

/* Overlay */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  background: #111;
  border-left: 1px solid #222;
  display: flex;
  flex-direction: column;
  padding: 100px 24px;
  gap: 24px;
  transition: right .3s ease;
  z-index: 999;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.mobile-menu a:hover {
  color: var(--plex);
}

.mobile-menu.open {
  right: 0;
}

.logout-mobile {
  background: var(--plex);
  color: black !important;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 768px){
  .desktop-menu {
    display: none;
  }

  .burger {
    display: block;
  }
}

.stats-preview strong {
  font-size: 18px;
  color: #4caf50;
}

.stats-preview.loading {
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════════
   📊 SECTION STATISTIQUES DE VISIONNAGE
═══════════════════════════════════════════════════════════════ */

.watch-stats-section {
  margin: 50px 0;
  animation: fadeInUp 0.6s ease-out;
}

.stats-header {
  text-align: center;
  margin-bottom: 40px;
}

.stats-header h2 {
  font-size: 28px;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.stats-subtitle {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

/* Grille d'affichage */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Carte de statistique */
.stat-card {
  background: linear-gradient(135deg, var(--panel2) 0%, var(--panel) 100%);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Effet de fond animé au hover */
.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, rgba(245, 166, 35, 0) 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  border-color: var(--plex);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

/* Icône */
.stat-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Contenu de la carte */
.stat-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Valeur principale (avec animation count-up) */
.stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--plex);
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
}

.stat-value.counter {
  transition: color 0.3s ease;
}

.stat-card:hover .stat-value {
  color: var(--plex2);
  text-shadow: 0 0 20px rgba(245, 166, 35, 0.3);
}

/* Unité */
.stat-unit {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.stat-sub {
  font-size: 11px;
  color: #888;
  font-weight: 400;
  margin-top: 6px;
  letter-spacing: 0.2px;
}

/* =========================
   SERVER STATS BAR
========================= */
.server-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 28px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  flex-wrap: wrap;
  row-gap: 16px;
}

.server-stats-bar.loaded {
  opacity: 1;
  transform: translateY(0);
}

.ssb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
  min-width: 90px;
  padding: 0 12px;
}

.ssb-divider {
  width: 1px;
  height: 40px;
  background: var(--line);
  flex-shrink: 0;
}

.ssb-icon {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 2px;
}

.ssb-num {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
}

.ssb-label {
  font-size: 11px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.ssb-sub {
  font-size: 10px;
  color: #555;
  margin-top: 1px;
}

@media (max-width: 600px) {
  .server-stats-bar {
    padding: 16px 12px;
    gap: 0;
  }
  .ssb-item { min-width: 70px; padding: 0 6px; }
  .ssb-num  { font-size: 18px; }
}

/* Animation d'apparition */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsif */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .stats-header h2 {
    font-size: 22px;
  }
  
  .stat-card {
    padding: 24px 20px;
  }
  
  .stat-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }
  
  .stat-value {
    font-size: 28px;
  }
}

/* =========================
   SKELETON LOADER (global)
   Usage: add class "skel" to any element while its data is loading.
   Remove the class once real data is applied.
========================= */
.skel {
  color: transparent !important;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.06) 25%,
    rgba(255,255,255,0.14) 50%,
    rgba(255,255,255,0.06) 75%
  ) !important;
  background-size: 300% 100% !important;
  animation: skel-shimmer 1.5s ease-in-out infinite !important;
  border-radius: 6px !important;
  border-color: transparent !important;
  pointer-events: none;
  min-width: 60px;
  display: inline-block;
}
.skel::before, .skel::after { display: none !important; }
@keyframes skel-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}