/* =========================================================
   SCORIZER - COMPONENTES Y ESTILOS GENERALES
   ========================================================= */


/* HOME-ESTILO */


/* =========================================================
   RESET
========================================================= */



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  background: #f5f5f5;
  font-family: 'Inter', sans-serif;
  color: #111;
}



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



.home-dashboard {
  padding: 22px;
}



/* =========================================================
   HERO SECTION
========================================================= */



.hero-section {
  display: grid;
  grid-template-columns: 2fr 1.05fr;
  gap: 18px;
  margin-bottom: 18px;
  align-items: stretch;
}



/* =========================================================
   HERO BANNER
========================================================= */



.hero-banner {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 300px;

  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, .92) 0%,
      rgba(0, 0, 0, .70) 35%,
      rgba(0, 0, 0, .25) 70%,
      rgba(0, 0, 0, .08) 100%),
    url('https://res.cloudinary.com/dyjcyz8tw/image/upload/v1778577246/banner_llev7f.png');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}



.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at center,
      rgba(255, 0, 0, .15),
      transparent 60%);
}



.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;

  display: flex;
  flex-direction: column;

  padding: 28px;
}



.verified-badge {
  margin-bottom: 18px;
}



.verified-badge span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: rgba(0, 0, 0, .55);

  color: #fff;

  padding: 10px 18px;

  border-radius: 999px;

  font-size: 12px;
  font-weight: 700;

  border: 1px solid rgba(255, 255, 255, .08);
}



.verified-badge i {
  color: #ff1a1a;
}



.hero-info {
  display: flex;
  align-items: center;
  gap: 26px;

  margin-top: auto;
  margin-bottom: auto;
}



.hero-logo {
  width: 150px;
  object-fit: contain;
}



.hero-text h1 {
  font-size: 68px;
  line-height: .9;
  font-weight: 900;

  text-transform: uppercase;

  color: #fff;

  margin-bottom: 18px;
}



.hero-text h1 span {
  display: block;
  color: #ff1a1a;
}



.hero-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}



.hero-tags span {
  padding: 9px 16px;

  border-radius: 999px;

  background: rgba(255, 255, 255, .08);

  border: 1px solid rgba(255, 255, 255, .10);

  color: #fff;

  font-size: 13px;
  font-weight: 600;
}



.hero-text p {
  max-width: 500px;

  color: rgba(255, 255, 255, .92);

  font-size: 16px;
  line-height: 1.7;
}



/* =========================================================
   SUMMARY CARD
========================================================= */



.summary-card {
  background: #fff;

  border-radius: 24px;

  padding: 24px;

  display: grid;
  grid-template-columns: 1fr .9fr;

  gap: 22px;

  border: 1px solid #ececec;

  box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
}



.summary-left {
  border-right: 1px solid #efefef;
  padding-right: 18px;
}



.summary-title {
  font-size: 16px;
  font-weight: 900;

  margin-bottom: 28px;
}



.summary-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
}



.summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 16px;

  border-bottom: 1px solid #f1f1f1;
}



.summary-item:last-child {
  border-bottom: none;
}



.summary-item-left {
  display: flex;
  align-items: center;
  gap: 14px;
}



.summary-item-left i {
  color: #ff1a1a;
  font-size: 18px;
}



.summary-item-left span {
  font-size: 18px;
  font-weight: 800;
}



.summary-item p {
  font-size: 14px;
  color: #555;
}



.summary-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.ranking-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 10px;
}



.ranking-number {
  font-size: 62px;
  line-height: 1;
  font-weight: 900;
  color: #ff1a1a;

  margin-bottom: 10px;
}



.ranking-location {
  color: #666;
  font-size: 15px;

  margin-bottom: 20px;
}



.ranking-graph {
  width: 100%;
  height: 120px;

  background:
    linear-gradient(180deg,
      rgba(255, 0, 0, .08),
      rgba(255, 0, 0, .02));

  border-radius: 18px;

  overflow: hidden;
}



.ranking-graph svg {
  width: 100%;
  height: 100%;
}



.ranking-area {
  fill: rgba(255, 0, 0, .08);
}



.ranking-line {
  fill: none;
  stroke: #ff1a1a;
  stroke-width: 4;
}



.ranking-dot {
  fill: #ff1a1a;
}



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



.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;

  margin-bottom: 18px;
}



.stat-card {
  background: #fff;

  border-radius: 22px;

  padding: 22px;

  border: 1px solid #ececec;

  display: flex;
  align-items: center;
  gap: 18px;

  transition: .3s ease;
}



.stat-card:hover {
  transform: translateY(-3px);
}



.stat-icon {
  width: 66px;
  height: 66px;

  border-radius: 18px;

  background: rgba(255, 0, 0, .05);

  display: flex;
  align-items: center;
  justify-content: center;
}



.stat-icon i {
  color: #ff1a1a;
  font-size: 34px;
}



.stat-content h4 {
  font-size: 13px;
  font-weight: 800;

  color: #555;

  margin-bottom: 8px;
}



.stat-content span {
  display: block;

  font-size: 50px;
  line-height: 1;

  font-weight: 900;

  margin-bottom: 8px;
}



.stat-content p {
  font-size: 14px;
  color: #777;
}



/* =========================================================
   MIDDLE GRID
========================================================= */



.middle-grid {
  display: grid;
  grid-template-columns: 1.6fr .9fr .8fr;
  gap: 18px;

  margin-bottom: 18px;
}



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



.map-card,
.events-card,
.grow-card,
.tournaments-card,
.ranking-card,
.classes-card {
  background: #fff;

  border-radius: 22px;

  border: 1px solid #ececec;

  overflow: hidden;

  transition: .3s ease;
}



.map-card:hover,
.events-card:hover,
.grow-card:hover,
.tournaments-card:hover,
.ranking-card:hover,
.classes-card:hover {
  transform: translateY(-3px);
}



/* =========================================================
   CARD HEADER
========================================================= */



.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 20px 22px;
}



.card-header h3 {
  font-size: 15px;
  font-weight: 900;
}



.card-header p {
  color: #666;
  margin-top: 5px;
  font-size: 14px;
}



.card-header a {
  text-decoration: none;

  color: #ff1a1a;

  font-size: 13px;
  font-weight: 700;
}



.card-header button {
  border: 1px solid #ff1a1a;
  background: #fff;
  color: #ff1a1a;

  height: 42px;
  padding: 0 22px;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 800;

  cursor: pointer;

  transition: .25s ease;
}



.card-header button:hover {
  background: #ff1a1a;
  color: #fff;
}



/* =========================================================
   MAP
========================================================= */



#map {
  width: 100%;
  height: 280px;
}



.leaflet-container {
  font-family: 'Inter', sans-serif;
}



.leaflet-control-zoom {
  border: none !important;
}



.leaflet-control-zoom a {
  width: 38px !important;
  height: 38px !important;

  line-height: 38px !important;

  border: none !important;

  background: #fff !important;

  border-radius: 14px !important;

  box-shadow: 0 10px 20px rgba(0, 0, 0, .08);

  color: #111 !important;

  font-weight: 800;

  margin-bottom: 8px;
}



.leaflet-control-attribution {
  background: rgba(255, 255, 255, .9) !important;
}



/* =========================================================
   MARKER
========================================================= */



.scorizer-marker {
  display: flex;
  align-items: center;
  justify-content: center;
}



.marker-inner {
  width: 20px;
  height: 20px;

  border-radius: 50%;

  background: #ff1a1a;

  border: 4px solid #fff;

  box-shadow:
    0 0 0 6px rgba(255, 0, 0, .12),
    0 10px 20px rgba(0, 0, 0, .18);
}



/* =========================================================
   POPUP
========================================================= */



.leaflet-popup-content-wrapper {
  border-radius: 22px !important;
  padding: 0 !important;
  overflow: hidden;
}



.leaflet-popup-content {
  margin: 0 !important;
}



.scorizer-leaflet-popup .leaflet-popup-close-button {
  top: 12px !important;
  right: 12px !important;
  width: 34px !important;
  height: 34px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12) !important;
  color: #fff !important;
  font-size: 24px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  z-index: 4;
}



.scorizer-leaflet-popup .leaflet-popup-close-button:hover {
  background: rgba(255, 255, 255, .22) !important;
}



.popup-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  height: 30px;

  padding: 0 14px;

  border-radius: 999px;

  background: rgba(255, 255, 255, .08);

  color: #fff;

  font-size: 11px;
  font-weight: 800;

  margin-bottom: 12px;
}



.popup-icon {
  font-size: 18px;
}



.btn-scorizer-ver {
  width: 100%;
  height: 48px;

  border: none;

  border-radius: 14px;

  background: #ff1a1a;
  color: #fff;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: 800;

  cursor: pointer;

  transition: .25s ease;
}



.btn-scorizer-ver,
.btn-scorizer-ver:visited,
.btn-scorizer-ver:focus,
.btn-scorizer-ver:hover {
  color: #fff;
  text-decoration: none;
}



.btn-scorizer-ver:hover {
  background: #000;
}



/* =========================================================
   EVENTS
========================================================= */



.events-card {
  padding-bottom: 10px;
}



.event-item {
  display: flex;
  gap: 16px;

  padding: 0 22px 22px;
}



.event-date {
  width: 64px;
  min-width: 64px;
  height: 64px;

  border-radius: 16px;

  background: #ff1a1a;

  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}



.event-date span {
  font-size: 26px;
  font-weight: 900;
}



.event-date p {
  font-size: 11px;
  font-weight: 700;
}



.event-info h4 {
  font-size: 17px;
  margin-bottom: 5px;
}



.event-info p {
  color: #666;
  font-size: 14px;
}



/* =========================================================
   GROW CARD
========================================================= */



.grow-card {
  position: relative;

  min-height: 100%;

  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, .95),
      rgba(0, 0, 0, .25)),
    url('https://res.cloudinary.com/dyjcyz8tw/image/upload/v1778577246/banner_llev7f.png');

  background-size: cover;
  background-position: center;
}



.grow-content {
  padding: 32px;
  color: #fff;
}



.grow-content h2 {
  font-size: 52px;
  line-height: .92;
  font-weight: 900;

  margin-bottom: 24px;
}



.grow-content p {
  font-size: 20px;
  margin-bottom: 12px;
}



.grow-content button {
  margin-top: 20px;

  border: none;

  background: #ff1a1a;
  color: #fff;

  padding: 15px 24px;

  border-radius: 14px;

  font-weight: 800;

  cursor: pointer;
}



/* =========================================================
   BOTTOM GRID
========================================================= */



.bottom-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr;
  gap: 18px;

  margin-bottom: 18px;
}



/* =========================================================
   TOURNAMENTS
========================================================= */



.tournament-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;

  padding: 0 22px 22px;
}



.tournament-item {
  background: #fafafa;

  border-radius: 18px;

  padding: 18px;
}



.date-box {
  width: 60px;
  height: 60px;

  border-radius: 14px;

  background: #ff1a1a;
  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin-bottom: 16px;
}



.date-box span {
  font-size: 26px;
  font-weight: 900;
}



.date-box p {
  font-size: 11px;
  font-weight: 700;
}



.tournament-item h4 {
  font-size: 17px;
  margin-bottom: 5px;
}



.tournament-item p,
.tournament-item small {
  color: #666;
}



/* =========================================================
   RANKING CARD
========================================================= */



.ranking-card table {
  width: 100%;
  border-collapse: collapse;
}



.ranking-card table tr td {
  padding: 16px 22px;
  border-bottom: 1px solid #f1f1f1;

  font-size: 14px;
}



.active-row {
  background: rgba(255, 0, 0, .06);

  color: #ff1a1a;
  font-weight: 700;
}



/* =========================================================
   CLASSES CARD
========================================================= */



.class-item {
  padding: 18px 22px;
  border-bottom: 1px solid #f1f1f1;
}



.class-item:last-child {
  border-bottom: none;
}



.class-item h4 {
  margin-bottom: 6px;
  font-size: 16px;
}



.class-item p {
  color: #666;
  font-size: 14px;
}



/* =========================================================
   FOOTER
========================================================= */



.footer-info {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  gap: 1px;

  overflow: hidden;

  border-radius: 22px;

  background: #111;
}



.footer-card {
  padding: 24px;

  background:
    linear-gradient(180deg,
      rgba(20, 20, 20, 1),
      rgba(10, 10, 10, 1));

  color: #fff;
}



.footer-card h4 {
  color: #ff1a1a;

  margin-bottom: 10px;

  font-size: 14px;
  font-weight: 800;
}



.footer-card p {
  color: rgba(255, 255, 255, .8);

  line-height: 1.6;

  font-size: 13px;
}



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



@media(max-width:1400px) {
.hero-section,
.middle-grid,
.bottom-grid {
    grid-template-columns: 1fr;
  }



  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }



  .footer-info {
    grid-template-columns: repeat(2, 1fr);
  }



  .tournament-list {
    grid-template-columns: 1fr;
  }
}



@media(max-width:768px) {
.home-dashboard {
    padding: 14px;
  }



  .hero-info {
    flex-direction: column;
    align-items: flex-start;
  }



  .hero-text h1 {
    font-size: 44px;
  }



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



  .summary-card {
    grid-template-columns: 1fr;
  }



  .summary-left {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-right: 0;
    padding-bottom: 20px;
  }



  .footer-info {
    grid-template-columns: 1fr;
  }
}



/* =========================================================
   FIX TITULOS COMO DISEÑO ORIGINAL
========================================================= */



.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  padding: 22px 24px 18px;

  background: #fff !important;
}



.card-header h3 {
  font-size: 16px !important;
  font-weight: 900 !important;
  color: #111 !important;

  line-height: 1 !important;

  margin: 0 !important;

  text-transform: uppercase;

  letter-spacing: -0.2px;
}



.card-header a {
  color: #ff1a1a !important;

  text-decoration: none;

  font-size: 13px !important;
  font-weight: 700 !important;

  margin-top: 2px;
}



.card-header p {
  color: #666 !important;

  margin-top: 6px !important;

  font-size: 14px !important;
  font-weight: 500;
}



/* =========================================================
   EVENTS HEADER FIX
========================================================= */



.events-card .card-header,
.tournaments-card .card-header,
.ranking-card .card-header,
.classes-card .card-header,
.map-card .card-header {
  min-height: auto !important;
  height: auto !important;
}



/* =========================================================
   REMOVE GREY BLOCKS
========================================================= */



.events-card,
.tournaments-card,
.ranking-card,
.classes-card,
.map-card {
  overflow: hidden;
}



.events-card::before,
.tournaments-card::before,
.ranking-card::before,
.classes-card::before {
  display: none !important;
}



/* =========================================================
   MAP HEADER
========================================================= */



.map-card .card-header {
  padding-bottom: 16px;
}



/* =========================================================
   EVENTS SPACING
========================================================= */



.event-item {
  padding: 0 24px 20px !important;
}



/* =========================================================
   TOURNAMENTS HEADER
========================================================= */



.tournaments-card .card-header {
  padding-bottom: 20px !important;
}



/* =========================================================
   RANKING HEADER
========================================================= */



.ranking-card .card-header {
  padding-bottom: 14px !important;
}



/* =========================================================
   CLASSES HEADER
========================================================= */



.classes-card .card-header {
  padding-bottom: 12px !important;
}



/* =========================================================
   MAPA GLOBAL DE CLUBES - ESTILOS NUEVOS
   Agregado al final para no romper estilos existentes
========================================================= */



:root {
  --sc-red: #ff1a1a;
  --sc-red-dark: #d90000;
  --sc-black: #05070b;
  --sc-text: #101828;
  --sc-muted: #667085;
  --sc-border: #e6e9ef;
  --sc-soft: #f6f7f9;
  --sc-card: #ffffff;
}



.map-topbar {
  height: 76px;
  background: linear-gradient(180deg, #06080d, #0b0d12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  position: sticky;
  top: 0;
  z-index: 40;
}



.map-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  flex: 1 1 auto;
  min-width: 0;
}



.map-nav a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2px;
  text-transform: uppercase;
  position: relative;
  padding: 29px 0;
  white-space: nowrap;
}



.map-nav a.active,
.map-nav a:hover {
  color: #fff;
}



.map-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--sc-red);
}



.map-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}



.top-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 14px;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}



.top-icon-btn:hover {
  background: rgba(255, 255, 255, .08);
}



.top-icon-btn .bubble {
  position: absolute;
  top: 3px;
  right: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sc-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  border: 2px solid #05070b;
}



.user-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, .12);
  min-width: 0;
}



.user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d1d1d, #111);
  border: 2px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
}



.user-meta strong {
  display: -webkit-box;
  width: clamp(130px, 14vw, 220px);
  font-size: 13px;
  line-height: 1.18;
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}



.user-meta span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, .62);
}



.map-hero {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .84) 36%, rgba(0, 0, 0, .58) 58%, rgba(0, 0, 0, .12) 100%),
    url('../assets/img/banner/team/team.png');
  background-size: cover;
  background-position: center right;
}



.map-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 26, 26, .18), transparent 34%);
  pointer-events: none;
}



.map-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1820px;
  margin: 0 auto;
  padding: 34px 60px 76px;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(520px, 1.1fr);
  align-items: end;
  gap: 26px;
}



.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sc-red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2px;
  margin-bottom: 18px;
}



.map-hero h1 {
  color: #fff;
  font-size: 44px;
  line-height: 1.05;
  max-width: 680px;
  font-weight: 950;
  letter-spacing: -1.3px;
  margin-bottom: 18px;
}



.map-hero h1 span {
  color: var(--sc-red);
}



.map-hero p {
  color: rgba(255, 255, 255, .84);
  max-width: 620px;
  font-size: 18px;
  line-height: 1.58;
}



.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 18px;
}



.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  min-height: 104px;
  border-radius: 20px;
  background: rgba(9, 11, 16, .72);
  border: 1px solid rgba(255, 255, 255, .11);
  backdrop-filter: blur(8px);
  color: #fff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .25);
}



.hero-stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255, 26, 26, .16);
  color: var(--sc-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}



.hero-stat-card strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}



.hero-stat-card span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}



.map-main-content {
  max-width: 1820px;
  margin: -46px auto 0;
  padding: 0 60px 42px;
  position: relative;
  z-index: 5;
}



.search-panel {
  background: #fff;
  border: 1px solid var(--sc-border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(16, 24, 40, .08);
}



.search-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(240px, 1fr) 150px 130px 190px;
  gap: 18px;
  align-items: end;
}



.form-field label {
  display: block;
  color: #344054;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}



.map-input,
.map-select {
  width: 100%;
  height: 54px;
  border: 1px solid #d8dde7;
  border-radius: 13px;
  background: #fff;
  color: #101828;
  font-size: 15px;
  font-weight: 600;
  padding: 0 16px;
  outline: none;
}



.input-with-icon {
  position: relative;
}



.input-with-icon i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #475467;
  pointer-events: none;
}



.input-with-icon .map-input,
.input-with-icon .map-select {
  padding-left: 46px;
}



.map-input:focus,
.map-select:focus {
  border-color: var(--sc-red);
  box-shadow: 0 0 0 4px rgba(255, 26, 26, .09);
}



.quick-filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  margin: 24px 0 20px;
}



.quick-group,
.toggle-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}



.quick-group {
  min-width: 0;
  justify-content: flex-start;
}



.toggle-group {
  justify-content: flex-end;
  max-width: 520px;
}



.quick-label {
  font-size: 13px;
  color: #344054;
  font-weight: 900;
  text-transform: uppercase;
  margin-right: 4px;
}



.chip-filter {
  height: 44px;
  max-width: 100%;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid #dfe3ea;
  background: #fff;
  color: #101828;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.2;
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
}



.chip-filter:hover,
.chip-filter:focus {
  text-decoration: none !important;
}



.chip-filter i,
.chip-dot {
  flex: 0 0 auto;
}



.chip-filter-text,
.chip-filter>span:not(.chip-dot) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}



.chip-filter:hover,
.chip-filter.active {
  border-color: rgba(255, 26, 26, .38);
  background: rgba(255, 26, 26, .04);
}



.chip-filter-more {
  border-style: dashed;
  color: #cf1515;
}



.chip-filter-more.tertiary-btn {
  min-height: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  box-shadow: none !important;
}



.app-table-mobile-toggle.tertiary-btn {
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border-radius: 12px;
  box-shadow: none !important;
}



.chip-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}



.chip-dot.blue {
  background: #164fb3;
}



.chip-dot.black {
  background: #111827;
}



.chip-dot.orange {
  background: #b45309;
}



.chip-dot.red {
  background: #db1414;
}



.chip-dot.purple {
  background: #7e22ce;
}



.quick-group[data-expanded="true"] {
  align-items: flex-start;
}



.results-panel {
  background: #fff;
  border: 1px solid var(--sc-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(16, 24, 40, .05);
}



.results-header {
  height: 62px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eef1f5;
}



.results-header h3 {
  font-size: 16px;
  font-weight: 950;
}



.results-header h3 span {
  color: var(--sc-red);
}



.sort-select {
  border: 1px solid #dfe3ea;
  background: #fff;
  height: 38px;
  border-radius: 10px;
  padding: 0 12px;
  color: #344054;
  font-weight: 800;
  outline: none;
}



.map-list-loading {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid #edf0f5;
  border-radius: 16px;
  background: #fff;
  color: #475467;
}



.map-list-loading strong {
  display: block;
  margin-bottom: 4px;
  color: #101828;
  font-size: 14px;
  font-weight: 950;
}



.map-list-loading span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}



.map-loading-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 26, 26, .1);
  color: var(--sc-red);
}



.map-loading-card {
  height: 98px;
  border-radius: 16px;
  background: linear-gradient(90deg, #f2f4f7 0%, #ffffff 45%, #f2f4f7 100%);
  background-size: 220% 100%;
  animation: map-loading-shimmer 1.3s ease-in-out infinite;
}



.map-loading-state {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #667085;
  font-size: 14px;
  font-weight: 900;
  background: #fff;
}



.map-loading-state i {
  color: var(--sc-red);
  font-size: 28px;
}



@keyframes map-loading-shimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}



.club-logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 950;
  font-size: 13px;
  overflow: hidden;
  border: 1px solid #e8ecf2;
}



.club-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.club-main h4 {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 950;
  margin: 4px 0 6px;
}



.verified-icon {
  color: var(--sc-red);
  font-size: 13px;
}



.club-sports {
  color: #475467;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 9px;
}



.sports-more-badge {
  border: 1px solid rgba(255, 26, 26, .24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 24px;
  margin-left: 6px;
  padding: 0 9px;
  background: rgba(255, 26, 26, .1);
  color: var(--sc-red);
  border-radius: 999px;
  appearance: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  font-family: inherit;
  line-height: 1;
  vertical-align: middle;
}



.sports-more-badge:hover,
.sports-more-badge:focus {
  background: rgba(255, 26, 26, .16);
  color: var(--sc-red);
  outline: none;
}



/* .scorizer-popup-row .sports-more-badge {
  background: #ff1a1a;
  color: #fff;
  border-color: #ff1a1a;
  box-shadow: 0 8px 16px rgba(255, 26, 26, .18);
} */



.club-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #475467;
  font-size: 12px;
  font-weight: 800;
}



.club-meta .rating {
  color: #f59e0b;
}



.club-distance {
  color: var(--sc-red);
  font-size: 13px;
  font-weight: 950;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  padding-top: 30px;
}



.results-footer {
  padding: 0 12px 14px;
}



.results-footer button {
  width: 100%;
  height: 48px;
  border: 1px solid #dfe3ea;
  background: #fff;
  border-radius: 13px;
  color: #101828;
  font-weight: 900;
  cursor: pointer;
}



#clubMap {
  height: 720px;
  width: 100%;
  z-index: 1;
}



.map-floating-controls {
  position: absolute;
  left: 18px;
  top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}



.map-control-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e4e8ef;
  box-shadow: 0 10px 22px rgba(16, 24, 40, .12);
  color: #101828;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 17px;
}



.map-control-btn:hover {
  background: #f8fafc;
}



.map-layers-card {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 220px;
  background: #fff;
  border: 1px solid #e5e9f0;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, .14);
}



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



.map-layers-card h4 {
  font-size: 14px;
  font-weight: 950;
}



.layer-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}



.layer-row input {
  accent-color: var(--sc-red);
  width: 16px;
  height: 16px;
}



.map-preview-card {
  position: absolute;
  right: 170px;
  bottom: 112px;
  z-index: 11;
  width: 352px;
  background: #fff;
  border: 1px solid #e5e9f0;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 14px;
  box-shadow: 0 22px 55px rgba(16, 24, 40, .22);
}



.preview-image {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  object-fit: cover;
  background: #111;
}



.preview-content h4 {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 950;
  margin-bottom: 5px;
}



.preview-content p {
  color: #475467;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 8px;
}



.preview-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}



.preview-actions a,
.preview-actions button {
  flex: 1;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}



.preview-actions a {
  background: var(--sc-red);
  color: #fff;
  border: none;
}



.preview-actions button {
  background: #fff;
  color: #101828;
  border: 1px solid #dfe3ea;
}



.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #344054;
  font-size: 12px;
  font-weight: 900;
}



.legend-pin {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid currentColor;
}



.legend-pin.featured {
  color: var(--sc-red);
  background: rgba(255, 26, 26, .12);
}



.legend-pin.club {
  color: #3b5b85;
}



.legend-pin.cluster {
  color: #db1414;
  background: rgba(219, 20, 20, .12);
}



.legend-pin.event {
  color: #246bfd;
  background: rgba(36, 107, 253, .12);
}



.scorizer-club-marker-icon {
  background: transparent;
  border: 0;
}



.pin-type-badge {
  position: absolute;
  z-index: 3;
  right: 2px;
  bottom: 8px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  background: var(--sc-red);
  color: #fff;
  border: 2px solid #fff;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: 0 8px 14px rgba(16, 24, 40, .22);
}



.pin-type-badge-natfederation {
  background: #246bfd;
}



.pin-type-badge-regfederation {
  background: #16a34a;
}



.pin-type-badge-team {
  background: #7e22ce;
}



.cluster-marker {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(219, 20, 20, .88);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  font-size: 18px;
  border: 5px solid rgba(255, 255, 255, .88);
  box-shadow: 0 0 0 9px rgba(219, 20, 20, .16), 0 12px 25px rgba(0, 0, 0, .18);
}



.event-marker {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #246bfd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  border: 4px solid rgba(255, 255, 255, .9);
  box-shadow: 0 0 0 8px rgba(36, 107, 253, .15), 0 12px 22px rgba(0, 0, 0, .16);
}



.trust-strip {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}



.trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--sc-border);
  border-radius: 18px;
  padding: 18px 22px;
}



.trust-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: #f7f8fb;
  border: 1px solid #e6e9ef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #101828;
  font-size: 22px;
  box-shadow: 0 8px 16px rgba(16, 24, 40, .04);
}



.trust-card h4 {
  font-size: 14px;
  font-weight: 950;
  margin-bottom: 3px;
}



.trust-card p {
  color: #667085;
  font-size: 13px;
  font-weight: 600;
}



@media(max-width:1500px) {
.map-hero-inner,
.map-main-content {
    padding-left: 34px;
    padding-right: 34px;
  }



  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }



  .map-preview-card {
    right: 120px;
  }
}



@media(max-width:1180px) {
.map-topbar {
    height: auto;
    flex-wrap: wrap;
    gap: 10px 16px;
    padding-top: 12px;
    padding-bottom: 12px;
  }



  .map-nav {
    order: 3;
    flex: 0 0 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }



  .map-nav::-webkit-scrollbar {
    display: none;
  }



  .map-nav a {
    flex: 0 0 auto;
    padding: 8px 0;
  }



  .map-hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }



  .search-grid {
    grid-template-columns: 1fr 1fr;
  }



  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}



@media(max-width:768px) {
.map-topbar {
    height: auto;
    min-height: 70px;
    padding: 14px 16px;
    gap: 12px;
  }



  .map-actions .top-icon-btn:nth-child(3) {
    display: none;
  }



  .map-actions {
    margin-left: auto;
  }



  .user-pill {
    gap: 8px;
    padding-left: 10px;
  }



  .user-meta strong {
    width: clamp(110px, 36vw, 160px);
    font-size: 12px;
  }



  .map-hero {
    min-height: auto;
  }



  .map-hero-inner {
    padding: 28px 18px 76px;
  }



  .map-hero h1 {
    font-size: 32px;
  }



  .map-hero p {
    font-size: 15px;
  }



  .hero-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }



  .hero-stat-card {
    padding: 14px;
    min-height: 84px;
  }



  .hero-stat-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }



  .hero-stat-card strong {
    font-size: 22px;
  }



  .map-main-content {
    padding: 0 14px 28px;
    margin-top: -44px;
  }



  .search-panel {
    padding: 16px;
    border-radius: 16px;
  }



  .search-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }



  .quick-filters {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }



  .quick-group,
.toggle-group {
    width: 100%;
    overflow: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }



  .quick-group[data-expanded="true"] {
    overflow: visible;
    flex-wrap: wrap;
  }



  .chip-filter {
    min-width: max-content;
  }



  .results-panel {
    display: none;
  }



  #clubMap {
    height: 590px;
  }



  .map-layers-card {
    display: none;
  }



  .map-preview-card {
    left: 12px;
    right: 12px;
    bottom: 76px;
    width: auto;
    grid-template-columns: 92px 1fr;
    padding: 12px;
  }



  .preview-image {
    width: 92px;
    height: 92px;
  }



  .preview-content h4 {
    font-size: 15px;
  }



  .legend-item {
    min-width: max-content;
  }



  .trust-strip {
    grid-template-columns: 1fr;
  }
}



/* =========================================================
   MAPA ORIGINAL REUTILIZABLE
   Mantiene el componente map.html dentro del nuevo map_base.html
========================================================= */



.map-original-card {
  height: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
}



.location-radius-group {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  border: 1px solid #d8dde7;
  border-radius: 12px;
  padding: 6px;
}



.location-radius-group legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}



.location-radius-group label {
  cursor: pointer;
}



.location-radius-group input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}



.location-radius-group span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  border-radius: 9px;
  padding: 0 10px;
  color: #475467;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}



.location-radius-group input:checked+span {
  background: rgba(255, 26, 26, .1);
  color: var(--sc-red);
}



.location-type-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}



.location-type-filter {
  height: 32px;
  border: 1px solid #e6e9ef;
  border-radius: 999px;
  padding: 0 11px;
  background: #fff;
  color: #344054;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}



.location-type-filter:hover,
.location-type-filter.active {
  border-color: rgba(255, 26, 26, .32);
  background: rgba(255, 26, 26, .06);
  color: #101828;
}



.location-legend-title {
  margin-right: 4px;
  color: #667085;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}



.location-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid #e6e9ef;
  border-radius: 999px;
  background: #fff;
  color: #344054;
  font-size: 12px;
  font-weight: 900;
}



.location-legend-dot {
  width: 10px;
  min-width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sc-red);
  box-shadow: 0 0 0 4px rgba(255, 26, 26, .12);
}



.location-legend-dot-club {
  background: var(--sc-red);
  box-shadow: 0 0 0 4px rgba(255, 26, 26, .12);
}



.location-legend-dot-franchise {
  background: #c9161d;
  box-shadow: 0 0 0 4px rgba(201, 22, 29, .14);
}



.location-legend-dot-intfederation {
  background: #101828;
  box-shadow: 0 0 0 4px rgba(16, 24, 40, .12);
}



.location-legend-dot-natfederation {
  background: #246bfd;
  box-shadow: 0 0 0 4px rgba(36, 107, 253, .12);
}



.location-legend-dot-regfederation {
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, .12);
}



.location-legend-dot-team {
  background: #7e22ce;
  box-shadow: 0 0 0 4px rgba(126, 34, 206, .12);
}



.team-type-meta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}



.team-type-meta .location-legend-dot {
  flex: 0 0 auto;
}



.team-type-icon {
  width: 26px;
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 26, 26, .1);
  color: var(--sc-red);
  border: 2px solid rgba(255, 26, 26, .28);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}



.team-type-icon-natfederation {
  background: rgba(36, 107, 253, .1);
  color: #246bfd;
  border-color: rgba(36, 107, 253, .28);
}



.team-type-icon-regfederation {
  background: rgba(22, 163, 74, .1);
  color: #15803d;
  border-color: rgba(22, 163, 74, .28);
}



.team-type-icon-team {
  background: rgba(126, 34, 206, .1);
  color: #7e22ce;
  border-color: rgba(126, 34, 206, .28);
}



.club-main h4 .team-type-icon {
  flex: 0 0 auto;
}



.location-popup {
  width: 240px;
  padding: 16px;
  color: #101828;
}



.location-popup strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 900;
}



.location-popup p {
  margin-bottom: 10px;
  color: #475467;
  font-size: 13px;
  line-height: 1.45;
}



.map-empty-results {
  padding: 22px;
  color: #667085;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}



.map-empty-results-warning {
  margin: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 26, 26, .18);
  border-radius: 12px;
  background: rgba(255, 26, 26, .05);
  color: #8a1f1f;
  text-align: left;
}




.btn-view-all-clubs {
  width: 100%;
  height: 48px;
  border: 1px solid #dfe3ea;
  background: #fff;
  border-radius: 13px;
  color: #101828;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}



/* =========================================================
   BELTS MODULE
   Base: styles_nuevo.css
   Shared belt interface essentials
========================================================= */



:root {
  --belts-bg: #f5f7fb;
  --belts-card: var(--sc-card, #ffffff);
  --belts-text: var(--sc-text, #101828);
  --belts-muted: var(--sc-muted, #667085);
  --belts-border: var(--sc-border, #e6e9ef);
  --belts-soft: var(--sc-soft, #f6f7f9);
  --belts-primary: var(--sc-red, #ff1a1a);
  --belts-primary-dark: var(--sc-red-dark, #d90000);
  --belts-shadow: 0 14px 38px rgba(16, 24, 40, .08);
  --belts-transition: .24s ease;
}



body.belts-page {
  min-height: 100vh;
  background: var(--belts-bg);
  color: var(--belts-text);
}



.belts-page-shell {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 112px 22px 32px;
}



body.dark {
  --belts-bg: #0d0d0d;
  --belts-card: #151515;
  --belts-text: #ffffff;
  --belts-muted: #9ca3af;
  --belts-border: #252525;
  --belts-soft: #1f1f1f;
}



/* Module actions */



.top-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}



.filter-box {
  width: min(520px, 100%);
  min-height: 74px;
  background: var(--belts-card);
  border: 1px solid var(--belts-border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
}



.filter-box label {
  min-width: 160px;
  margin-bottom: 0;
  color: #4b5563;
  font-size: 15px;
  font-weight: 700;
}



.filter-box select {
  flex: 1;
  min-width: 180px;
  height: 46px;
  border: 1px solid var(--belts-border);
  border-radius: 14px;
  background: var(--belts-soft);
  color: var(--belts-text);
  padding: 0 16px;
  outline: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}



.top-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}



.top-buttons button,
.belts-clean-actions button,
.belts-clean-actions a,
.app-table-actions button,
.app-table-actions a {
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: var(--belts-transition, .2s ease);
}



.primary-btn,
.secondary-btn,
.primary-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  min-width: 0;
  height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
}



.tertiary-btn,
.toolbar-btn,
.table-action {
  cursor: pointer;
}



.secondary-btn {
  border: 0;
  background: var(--belts-card);
  color: var(--belts-text);
  box-shadow: var(--belts-shadow);
}



.primary-outline-btn {
  border: 1px solid rgba(255, 26, 26, .30);
  background: transparent;
  color: var(--belts-primary);
}



.primary-btn {
  border: 0;
  min-height: 58px;
  border-radius: 18px;
  background: var(--belts-primary);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}



.primary-btn:hover,
.primary-btn:focus,
.secondary-btn:hover,
.secondary-btn:focus,
.primary-outline-btn:hover,
.primary-outline-btn:focus {
  text-decoration: none !important;
}



.primary-btn:hover,
.primary-btn:focus {
  color: #ffffff;
}



.secondary-btn:hover,
.secondary-btn:focus {
  color: var(--belts-text);
}



.primary-outline-btn:hover,
.primary-outline-btn:focus {
  color: var(--belts-primary);
}



.primary-btn i,
.secondary-btn i,
.primary-outline-btn i {
  flex: 0 0 auto;
  line-height: 1;
}



.primary-btn span,
.secondary-btn span,
.primary-outline-btn span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}



.primary-btn:hover {
  background: var(--belts-primary-dark);
}



/* Module tabs */



.tabs {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  margin-bottom: 30px;
  min-width: 0;
}



.tabs-scroll-track {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 2px 6px;
}



.tabs-scroll-track::-webkit-scrollbar {
  display: none;
}



.tabs-scroll-indicator {
  width: 36px;
  height: 46px;
  border: 1px solid #e6e9ef;
  border-radius: 12px;
  background: #fff;
  color: #475467;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(16, 24, 40, .08);
  transition: var(--belts-transition);
}



.tabs-scroll-indicator:hover {
  border-color: rgba(255, 26, 26, .26);
  background: rgba(255, 26, 26, .08);
  color: var(--belts-primary);
}



.tabs-scroll-indicator:disabled {
  opacity: .35;
  pointer-events: none;
}



.tabs.can-scroll-left .tabs-scroll-left,
.tabs.can-scroll-right .tabs-scroll-right {
  display: inline-flex;
}



.tabs.has-scroll .tabs-scroll-track {
  mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
}



.tab {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  background: transparent;
  color: var(--belts-muted);
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: var(--belts-transition);
}



.tab:hover,
.tab.active {
  text-decoration: none !important;
  background: rgba(255, 26, 26, .12);
  color: var(--belts-primary);
}



/* Shared table pattern */


.app-table {
  --app-table-columns: repeat(auto-fit, minmax(140px, 1fr));
  --app-table-min-width: 760px;
  --app-table-gap: 8px;
  --app-table-body-gap: 0;
  --app-table-row-gap: 12px;
  --app-table-row-padding: 14px 16px;
  --app-table-row-radius: 14px;
  --app-table-row-bg: #fff;
  --app-table-row-hover-bg: rgba(255, 26, 26, .035);
  --app-table-border: #eef1f5;
  --app-table-head-bg: #f8fafc;
  --app-table-head-color: #667085;

  display: flex;
  flex-direction: column;
  gap: var(--app-table-gap);
  width: 100%;
  overflow-x: auto;
  padding: var(--app-table-padding, 0);
}



.belts-clean-page .app-table {
  position: relative;
  padding-bottom: var(--app-table-scroll-padding-bottom, 18px);
  background: linear-gradient(#e9edf3, #e9edf3) left bottom / 100% 12px no-repeat;
  scrollbar-color: rgba(255, 26, 26, .55) rgba(230, 233, 239, .9);
  scrollbar-width: auto;
}



@media(pointer: fine) {
.belts-clean-page .app-table {
    cursor: grab;
  }



  .belts-clean-page .app-table.is-drag-scrolling {
    cursor: grabbing;
    user-select: none;
  }



  .belts-clean-page .app-table button,
.belts-clean-page .app-table a,
.belts-clean-page .app-table input,
.belts-clean-page .app-table select,
.belts-clean-page .app-table textarea,
.belts-clean-page .app-table label {
    cursor: initial;
  }
}



.belts-clean-page .app-table::-webkit-scrollbar {
  height: 12px;
}



.belts-clean-page .app-table::-webkit-scrollbar-track {
  border-radius: 999px;
  background: #e9edf3;
}



.belts-clean-page .app-table::-webkit-scrollbar-thumb {
  border: 3px solid #e9edf3;
  border-radius: 999px;
  background: rgba(255, 26, 26, .72);
}



.belts-clean-page .app-table::-webkit-scrollbar-thumb:hover {
  background: rgba(207, 21, 21, .9);
}



.app-table-body {
  display: flex;
  flex-direction: column;
  gap: var(--app-table-body-gap);
}



.app-table-row {
  display: grid;
  grid-template-columns: var(--app-table-columns);
  align-items: center;
  gap: var(--app-table-row-gap);
  min-width: var(--app-table-min-width);
  padding: var(--app-table-row-padding);
  background: var(--app-table-row-bg);
  border: 1px solid var(--app-table-border);
  border-radius: var(--app-table-row-radius);
  color: var(--belts-text, #101828);
  transition: var(--belts-transition);
}



.app-table-row:not(.app-table-head):hover {
  background: var(--app-table-row-hover-bg);
}



.app-table-head {
  background: var(--app-table-head-bg);
  color: var(--app-table-head-color);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: none;
}



.app-table-body .app-table-row {
  border-top: 0;
  border-radius: 0;
}



.app-table-body .app-table-row:first-child {
  border-top: 1px solid var(--app-table-border);
  border-top-left-radius: var(--app-table-row-radius);
  border-top-right-radius: var(--app-table-row-radius);
}



.app-table-body .app-table-row:last-child {
  border-bottom-left-radius: var(--app-table-row-radius);
  border-bottom-right-radius: var(--app-table-row-radius);
}



.app-table-cell {
  min-width: 0;
}



.app-table-mobile-label,
.app-table-mobile-toggle {
  display: none;
}



.drag-icon {
  color: #9ca3af;
  cursor: grab;
  font-size: 18px;
}



.color-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #6b7280;
  font-weight: 800;
}



.color-badge .app-table-mobile-value {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
}



.color-preview {
  display: inline-block;
  width: 26px;
  min-width: 26px;
  height: 26px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 8px;
  box-sizing: border-box;
  flex: 0 0 auto;
}



.color-preview-label {
  min-width: 0;
  color: var(--belts-text, #101828);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}



.color-preview.white {
  background: #f5f5f5;
}



.color-preview.blue {
  background: #163aaa;
}



.color-preview.purple {
  background: #6a0dad;
}



.color-preview.brown {
  background: #805a3b;
}



.color-preview.black {
  background: #111111;
}



.app-table-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}



.app-table-actions-buttons {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}



body.belts-clean-page .app-table .app-table-actions {
  justify-self: end;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}



body.belts-clean-page .app-table .app-table-actions-buttons {
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}



body.belts-clean-page .app-table .app-table-head>span:last-child {
  text-align: right;
}



.app-table-actions button,
.app-table-actions a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--belts-border, #e6e9ef);
  border-radius: 14px;
  background: var(--belts-soft, #f6f7f9);
  color: var(--belts-text, #101828);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  text-decoration: none !important;
  flex: 0 0 42px;
}



.app-table-actions button:hover,
.app-table-actions a:hover {
  text-decoration: none !important;
  background: #eef1f6;
  transform: translateY(-2px);
}



.app-table-actions button.is-disabled,
.app-table-actions button[aria-disabled="true"] {
  opacity: .45;
  cursor: not-allowed;
}



.app-table-actions button.is-disabled:hover,
.app-table-actions button[aria-disabled="true"]:hover {
  background: var(--belts-soft, #f6f7f9);
  transform: none;
}



.delete-btn,
.app-table-actions .delete-btn {
  color: var(--belts-primary, #ff1a1a);
}



.drag-info {
  margin-top: 30px;
  background: rgba(29, 78, 216, .06);
  border: 1px solid rgba(29, 78, 216, .12);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #1d4ed8;
  font-weight: 700;
}



.drag-info i {
  font-size: 18px;
}



body.dark .app-table-row,
body.dark .app-table-actions button,
body.dark .filter-box,
body.dark .secondary-btn {
  background: var(--belts-card);
}



body.dark .app-table-actions button:hover {
  background: #242424;
}



body.dark .app-table-head,
body.dark .filter-box label {
  color: #9ca3af;
}



@media(max-width: 768px) {
.app-table {
    background: none;
    overflow-x: visible;
    padding: var(--app-table-mobile-padding, var(--app-table-padding, 0));
  }



  .app-table-head {
    display: none !important;
  }



  .app-table-body {
    gap: 12px;
  }



  .app-table-row:not(.app-table-head),
.app-table-body .app-table-row,
.app-table-body .app-table-row:first-child,
.app-table-body .app-table-row:last-child {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-width: 0;
    width: 100%;
    padding: 0;
    border: 1px solid var(--app-table-border);
    border-radius: 16px;
    overflow: hidden;
  }



  .app-table-row:not(.app-table-head):hover {
    background: var(--app-table-row-bg);
  }



  .app-table-mobile-main {
    order: -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
  }



  .app-table-mobile-detail {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 12px 16px;
    border-top: 1px solid var(--app-table-border);
  }



  .app-table-row.is-expanded .app-table-mobile-detail {
    display: flex;
  }



  .app-table .drag-icon {
    display: none;
  }



  .app-table-mobile-label {
    display: block;
    flex: 0 0 auto;
    color: #667085;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
  }



  .app-table-mobile-value {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
    max-width: 62%;
    text-align: right;
    white-space: normal;
    overflow-wrap: anywhere;
  }



  .app-table-mobile-value>*:not(.color-preview):not(.belt-svg-icon):not(.belt-level-icon):not(.app-table-actions-buttons) {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }



  .app-table-mobile-value strong,
.app-table-mobile-value small,
.app-table-mobile-value em {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }



  .app-table-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border: 1px solid var(--app-table-border);
    border-radius: 12px;
    background: #fff;
    color: var(--belts-text, #101828);
  }



  .app-table-actions.app-table-mobile-detail {
    justify-content: space-between;
  }



  .app-table-actions.app-table-mobile-detail .app-table-actions-buttons {
    min-width: 0;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
  }



  .app-table-actions.app-table-mobile-detail button,
.app-table-actions.app-table-mobile-detail a {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 12px;
  }



  .color-badge .app-table-mobile-value {
    justify-content: flex-end;
    max-width: 62%;
  }
}



@media(max-width: 420px) {
.app-table-mobile-value,
.color-badge .app-table-mobile-value {
    max-width: 58%;
  }
}



@media(max-width: 768px) {
.top-actions {
    flex-direction: column;
    align-items: stretch;
  }



  .filter-box {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }



  .filter-box label,
.filter-box select,
.top-buttons button {
    width: 100%;
    min-width: 0;
  }



  .top-buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }



  .tabs {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding-bottom: 4px;
  }



  .tabs-scroll-indicator {
    width: 32px;
    height: 42px;
    border-radius: 10px;
  }



  .belts-page-shell {
    padding: 96px 14px 24px;
  }



  .drag-info {
    align-items: flex-start;
  }
}



/* =========================================================
   CINTURONES - MODELO LIMPIO CON BANNER ANCHO
   Agregar al final de styles_nuevo.css
========================================================= */



:root {
  --belts-red: #ff1a1a;
  --belts-red-dark: #d91717;
  --belts-black: #05070b;
  --belts-text: #101828;
  --belts-muted: #667085;
  --belts-border: #e6e9ef;
  --belts-card: #ffffff;
  --belts-soft: #f4f5f7;
}



body.belts-clean-page {
  background: var(--belts-soft);
  color: var(--belts-text);
}



.belts-clean-hero {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .84) 36%, rgba(0, 0, 0, .58) 58%, rgba(0, 0, 0, .12) 100%),
    url('../img/banner/belt/banner-belt.png');
  background-size: cover;
  background-position: center right;
}



.belts-clean-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 30%, rgba(255, 26, 26, .2), transparent 34%);
  pointer-events: none;
}



.belts-clean-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1820px;
  margin: 0 auto;
  padding: 42px 60px 78px;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, .9fr);
  align-items: end;
  gap: 30px;
}



.belts-clean-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--belts-red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2px;
  margin-bottom: 18px;
}



.belts-clean-hero h1 {
  color: #fff;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.02;
  max-width: 760px;
  font-weight: 950;
  letter-spacing: -1.4px;
  margin: 0 0 18px;
}



.belts-clean-hero h1 span {
  color: var(--belts-red);
}



.belts-clean-hero p {
  color: rgba(255, 255, 255, .84);
  max-width: 640px;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}



.belts-clean-hero-widgets {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 16px;
}



.belts-clean-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 100px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(9, 11, 16, .72);
  border: 1px solid rgba(255, 255, 255, .11);
  backdrop-filter: blur(8px);
  color: #fff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .25);
}



.belts-clean-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: rgba(255, 26, 26, .16);
  color: var(--belts-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: 0 0 auto;
}



.belts-clean-stat strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}



.belts-clean-stat span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}



.belts-clean-shell {
  max-width: 1960px;
  margin: -46px auto 0;
  padding: 0 28px 70px;
  position: relative;
  z-index: 5;
}



.belts-breadcrumb {
  margin: 0 0 14px;
  padding: 0 2px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}



.belts-breadcrumb ol {
  min-height: 38px;
  margin: 0;
  padding: 0 12px;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(230, 233, 239, .86);
  border-radius: 12px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 28px rgba(16, 24, 40, .05);
  white-space: nowrap;
}



.belts-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #667085;
  font-size: 12px;
  font-weight: 900;
}



.belts-breadcrumb li+li::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #98a2b3;
  font-size: 9px;
}



.belts-breadcrumb a,
.belts-breadcrumb li>span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  text-decoration: none;
}



.belts-breadcrumb a:hover,
.belts-breadcrumb a:focus {
  color: var(--belts-red);
  text-decoration: none;
}



.belts-breadcrumb .is-active {
  color: #101828;
}



.belts-breadcrumb .is-active>span {
  color: var(--belts-red);
}



.belts-clean-toolbar,
.belts-clean-filter-row,
.belts-clean-tabs,
.belts-clean-management,
.belts-clean-side>section {
  box-shadow: 0 18px 44px rgba(16, 24, 40, .07);
}



.belts-clean-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--belts-border);
  border-radius: 18px;
  margin-bottom: 18px;
}



.belts-clean-title span,
.belts-clean-section-label {
  display: block;
  color: var(--belts-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2px;
  margin-bottom: 6px;
}



.belts-clean-title h2 {
  margin: 0;
  color: var(--belts-text);
  font-size: 24px;
  font-weight: 950;
}



.belts-clean-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}



.belts-clean-filter-row,
.belts-clean-tabs {
  background: #fff;
  border: 1px solid var(--belts-border);
  border-radius: 18px;
}



.belts-clean-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 20px;
  align-items: start;
  margin-top: 20px;
}



body.belts-clean-page .belts-clean-grid:has(.app-table),
body.belts-clean-page .list-layout:has(.app-table) {
  grid-template-columns: minmax(0, 1fr);
}



body.belts-clean-page .belts-clean-grid:has(.app-table)>.belts-clean-side,
body.belts-clean-page .belts-clean-grid:has(.app-table)>aside {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}



@media(max-width: 760px) {
body.belts-clean-page .belts-clean-grid:has(.app-table)>.belts-clean-side,
body.belts-clean-page .belts-clean-grid:has(.app-table)>aside {
    grid-template-columns: 1fr;
  }
}



.belts-clean-management {
  background: #fff;
  border: 1px solid var(--belts-border);
  border-radius: 18px;
  overflow: hidden;
}



.belts-clean-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}



.belts-clean-girl-card {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .72)),
    url('https://images.unsplash.com/photo-1544717305-996b815c338c?q=80&w=900&auto=format&fit=crop');
  background-size: cover;
  background-position: center top;
}



.belts-clean-girl-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #fff;
}



.belts-clean-girl-overlay span,
.belts-clean-girl-overlay small {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
}



.belts-clean-girl-overlay strong {
  display: block;
  margin: 7px 0;
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}



.belts-clean-progress-card,
.belts-clean-student-card {
  background: #fff;
  border: 1px solid var(--belts-border);
  border-radius: 18px;
  padding: 22px;
}



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



.belts-clean-card-header h3,
.belts-clean-student-card h3 {
  margin: 0;
  color: var(--belts-text);
  font-size: 18px;
  font-weight: 950;
}



.belts-clean-card-header span {
  height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--belts-red);
  font-size: 12px;
  font-weight: 900;
}



.belts-clean-progress-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}



.belts-clean-progress-line::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 4px;
  transform: translateY(-50%);
  background: #e4e7ec;
  border-radius: 999px;
}



.progress-belt {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px #e4e7ec, 0 8px 18px rgba(16, 24, 40, .12);
}



.progress-belt.white {
  background: #fff;
}



.progress-belt.blue {
  background: #164fb3;
}



.progress-belt.purple {
  background: #7e22ce;
}



.progress-belt.brown {
  background: #7c2d12;
}



.progress-belt.black {
  background: #030712;
}



.belts-clean-progress-card p,
.belts-clean-student-card p {
  margin: 0;
  color: var(--belts-muted);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}



.belts-clean-student-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
}



.student-phone-mockup {
  width: 112px;
  min-height: 180px;
  border-radius: 26px;
  padding: 11px;
  background: #111827;
  box-shadow: 0 18px 34px rgba(16, 24, 40, .18);
}



.phone-speaker {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  margin: 0 auto 12px;
  background: rgba(255, 255, 255, .35);
}



.phone-content {
  min-height: 140px;
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(180deg, #fff, #f2f4f7);
}



.phone-label {
  display: block;
  color: #667085;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
}



.phone-content strong {
  display: block;
  color: #101828;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 950;
  margin-bottom: 12px;
}



.phone-progress {
  height: 8px;
  border-radius: 999px;
  background: #d0d5dd;
  overflow: hidden;
  margin-bottom: 8px;
}



.phone-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--belts-red);
}



.phone-content small {
  color: #667085;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
}



.belts-clean-student-card button {
  margin-top: 14px;
  height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: #111827;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}



@media (max-width: 1400px) {
.belts-clean-hero-inner {
    grid-template-columns: 1fr;
  }



  .belts-clean-hero-widgets {
    max-width: 860px;
  }



  .belts-clean-grid {
    grid-template-columns: 1fr;
  }



  .belts-clean-side {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}



@media (max-width: 900px) {
.belts-clean-hero-inner,
.belts-clean-shell {
    padding-left: 16px;
    padding-right: 16px;
  }



  .belts-clean-hero-widgets,
.belts-clean-side {
    grid-template-columns: 1fr;
  }



  .belts-clean-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }



  .belts-clean-actions {
    width: 100%;
    justify-content: flex-start;
  }



  .belts-clean-student-card {
    grid-template-columns: 1fr;
  }
}



.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}



.template-card,
.template-card:visited,
.template-card:focus {
  border: none;

  background: #fff;

  color: var(--belts-text, #101828);

  text-decoration: none !important;

  border-radius: 22px;

  padding: 24px;

  text-align: left;

  transition: .25s ease;

  border: 1px solid #ececec;

  display: flex;
  flex-direction: column;
  gap: 14px;

  min-height: 180px;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .04);
}



.template-card:hover {
  transform: translateY(-4px);

  color: var(--belts-text, #101828);

  text-decoration: none !important;

  border-color: #ff1a1a;

  box-shadow:
    0 20px 40px rgba(255, 0, 0, .08);
}



.template-card strong {
  color: var(--belts-text, #101828);
  font-size: 20px;
  font-weight: 900;
}



.template-card small {
  color: #777;
  line-height: 1.6;
}



.template-card.start-empty,
.template-card.start-empty:visited,
.template-card.start-empty:focus,
.template-card.start-empty:hover,
.template-card.start-empty strong {
  color: #fff;
}



.template-icon {
  width: 58px;
  height: 58px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  font-size: 22px;
}



.template-icon.blue {
  background: #2563eb;
}



.template-icon.red {
  background: #dc2626;
}



.template-icon.orange {
  background: #ea580c;
}



.template-icon.purple {
  background: #7c3aed;
}



.template-icon.plus {
  background: #111;
}



.start-empty {
  background: #111;
  color: #fff;
}



.start-empty small {
  color: rgba(255, 255, 255, .7);
}



body.belts-clean-page .select2-dropdown {
  border: 1px solid #dfe3ea;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(16, 24, 40, .14);
}



body.belts-clean-page .select2-search--dropdown {
  padding: 10px;
}



body.belts-clean-page .select2-search__field {
  min-height: 40px;
  border: 1px solid #dfe3ea !important;
  border-radius: 10px;
  padding: 0 12px;
  color: var(--belts-text, #101828);
  font-size: 14px;
  font-weight: 700;
  outline: none;
}



body.belts-clean-page .select2-search__field:focus {
  border-color: rgba(255, 26, 26, .46) !important;
  box-shadow: 0 0 0 4px rgba(255, 26, 26, .08);
}



body.belts-clean-page .select2-results__option {
  padding: 10px 12px;
  color: var(--belts-text, #101828);
  font-size: 14px;
  font-weight: 800;
}



body.belts-clean-page .select2-results__option--highlighted[aria-selected],
body.belts-clean-page .select2-results__option--highlighted.select2-results__option--selectable {
  background: rgba(255, 26, 26, .08);
  color: var(--belts-red, #ff1a1a);
}



body.belts-clean-page .select2-results__option[aria-selected=true],
body.belts-clean-page .select2-results__option--selected {
  background: rgba(255, 26, 26, .12);
  color: var(--belts-red, #ff1a1a);
}



body.belts-clean-page .select2-container--open,
body.belts-clean-page .select2-dropdown {
  z-index: 2400 !important;
}



#belt_name,
#belt_description {
  text-transform: uppercase;
}



.tab:hover,
.tab:focus {
  text-decoration: none !important;
}




/* =========================================
   BELTS SIDEBAR - SOLO NUEVAS
========================================= */



.requirement-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eef1f5;
}



.requirement-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}



.requirement-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 12px;
  background: rgba(255, 26, 26, .09);
  color: var(--belts-red, #ff1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}



.requirement-row strong {
  flex: 1;
  font-size: 14px;
  font-weight: 900;
  color: var(--belts-text, #101828);
}



.requirement-row span:last-child {
  font-size: 12px;
  font-weight: 800;
  color: var(--belts-muted, #667085);
}



.belts-clean-quote-card {
  background: linear-gradient(135deg, #05070b, #171923);
  border-radius: 14px;
  padding: 18px;
  color: #fff;
  box-shadow: 0 18px 44px rgba(16, 24, 40, .07);
}



.belts-clean-quote-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}




.prices-management {
  background: #fff;
  border: 1px solid var(--belts-border, #e6e9ef);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(16, 24, 40, .07);
}



.prices-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}



.prices-header h2 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 950;
  color: var(--belts-text, #101828);
}



.prices-header p {
  margin: 0;
  color: var(--belts-muted, #667085);
  font-size: 14px;
}



.organization {
  display: flex;
  align-items: center;
  gap: 12px;
}



.organization img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #e6e9ef;
}



.price-switch {
  position: relative;
  width: 54px;
  height: 30px;
}



.price-switch input {
  opacity: 0;
}



.price-slider {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: 999px;
  cursor: pointer;
  transition: .25s ease;
}



.price-slider::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  top: 4px;
  left: 4px;
  background: #fff;
  border-radius: 50%;
  transition: .25s ease;
}



.price-switch input:checked+.price-slider {
  background: #16a34a;
}



.price-switch input:checked+.price-slider::before {
  transform: translateX(24px);
}



.prices-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(37, 99, 235, .06);
  border: 1px solid rgba(37, 99, 235, .12);
  color: #1d4ed8;
}



.prices-info p {
  margin: 0;
  line-height: 1.6;
}



.subtab {
  height: 46px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid var(--belts-border, #e6e9ef);
  background: #fff;
  color: var(--belts-text, #101828);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}



.active-subtab {
  background: var(--belts-red, #ff1a1a);
  color: #fff;
  border-color: var(--belts-red, #ff1a1a);
  box-shadow: 0 10px 24px rgba(255, 26, 26, .18);
}



.prices-table-stack {
  display: grid;
  gap: 18px;
}



@media(max-width: 768px) {
body.belts-clean-page .quick-filters {
    grid-template-columns: 1fr;
    gap: 10px;
  }



  body.belts-clean-page .app-table {
    overflow-x: hidden;
  }
}



#beltRequirementsGradeNameInput {
  text-transform: uppercase;
}



.requirement-card {
  background: #fff;
  border: 1px solid var(--belts-border, #e6e9ef);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: .24s ease;
}



.requirement-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 26, 26, .25);
  box-shadow: 0 14px 35px rgba(16, 24, 40, .06);
}



.requirement-card .requirement-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 16px;
  background: rgba(255, 26, 26, .09);
  color: var(--belts-red, #ff1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}



.requirement-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--belts-muted, #667085);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}



.requirement-card strong {
  color: var(--belts-text, #101828);
  font-size: 20px;
  font-weight: 950;
}



.requirement-card.is-age-rules {
  align-items: flex-start;
}



.requirement-card.is-age-rules strong {
  display: block;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}



.belt-svg-icon {
  width: 64px;
  height: auto;
  aspect-ratio: 2 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}



.belt-svg-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 4px 8px rgba(16, 24, 40, .14));
}



.belt-level-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 26, 26, .14);
  border-radius: 14px;
  background: rgba(255, 26, 26, .08);
  color: var(--belts-red, #ff1a1a);
  font-size: 20px;
  box-shadow: 0 8px 18px rgba(16, 24, 40, .08);
}



.belt-level-icon.is-dual {
  border-color: rgba(16, 24, 40, .18);
  background: #fff;
  overflow: hidden;
}



.belt-level-icon svg {
  width: 82%;
  height: 82%;
  display: block;
  filter:
    drop-shadow(0 2px 3px rgba(16, 24, 40, .18))
    drop-shadow(0 0 1px rgba(16, 24, 40, .28));
}



.belt-level-icon.is-dual svg {
  color: var(--belt-level-color, currentColor);
}



:root {
  --ath-red: #ff1a1a;
  --ath-red-dark: #d90000;
  --ath-bg: #f4f5f7;
  --ath-card: #ffffff;
  --ath-text: #101828;
  --ath-muted: #667085;
  --ath-border: #e6e9ef;
  --ath-soft: #f8fafc;
  --ath-shadow: 0 18px 44px rgba(16, 24, 40, .07);
}



.requirement-mini,
.activity-item,
.table-actions,
.quick-stat,
.rank-item {
  display: flex;
  align-items: center;
}



.table-action {
  border: 1px solid var(--ath-border);
  background: #fff;
  color: #101828;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}



.quick-stat {
  background: #fff;
  border: 1px solid var(--ath-border);
  box-shadow: var(--ath-shadow);
}



.next-requirements,
.activity-list,
.timeline-list,
.document-list,
.rank-list {
  display: grid;
  gap: 12px;
}



.requirement-mini {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 11px;
  padding: 12px;
  border: 1px solid #edf0f4;
  border-radius: 14px;
  background: #fff;
}



.requirement-mini i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dcfce7;
  color: #15803d;
}



.requirement-mini.is-bad i {
  background: #fee2e2;
  color: #dc2626;
}



.requirement-mini strong,
.activity-item strong,
.path-row strong,
.rank-item strong {
  display: block;
  color: #101828;
  font-weight: 950;
}



.requirement-mini strong {
  font-size: .86rem;
}



.requirement-mini small {
  color: #667085;
  font-weight: 750;
}



.activity-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 13px;
  padding: 13px;
  border: 1px solid #edf0f4;
  border-radius: 15px;
  background: #fff;
}



.activity-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #2563eb;
}



.activity-icon.green {
  background: #dcfce7;
  color: #15803d;
}



.activity-icon.orange {
  background: #fff7ed;
  color: #ea580c;
}



.activity-icon.red {
  background: #fee2e2;
  color: #dc2626;
}



.activity-item strong {
  font-size: .88rem;
}



.activity-item span,
.activity-item time {
  color: #667085;
  font-size: .78rem;
  font-weight: 750;
}



.metric-grid,
.quick-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}



.metric-card {
  min-height: 110px;
  border: 1px solid #edf0f4;
  border-radius: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px;
  text-align: center;
}



.metric-card i {
  color: var(--ath-red);
  font-size: 1.4rem;
}



.metric-card strong {
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
}



.metric-card span {
  color: #667085;
  font-size: .75rem;
  font-weight: 850;
}



.path-card {
  display: grid;
}



.path-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 18px;
  padding: 16px;
  border: 1px solid #edf0f4;
  border-bottom: 0;
  background: #fff;
}



.path-row:first-child {
  border-radius: 16px 16px 0 0;
}



.path-row:last-child {
  border-bottom: 1px solid #edf0f4;
  border-radius: 0 0 16px 16px;
}



.path-row.current {
  background: #eff6ff;
  border-color: #bfdbfe;
}



.path-row.locked {
  opacity: .65;
}



.path-row img {
  width: 76px;
  filter: drop-shadow(0 8px 12px rgba(16, 24, 40, .12));
}



.path-row span {
  display: block;
  color: #667085;
  font-size: .8rem;
  font-weight: 750;
  margin-top: 3px;
}



#beltAthletesSelectAll {
  width: 16px;
  height: 16px;
  accent-color: var(--sc-red, #ff1a1a);
  cursor: pointer;
}



.table-actions {
  gap: 8px;
  justify-content: flex-end;
}



.table-action {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}



.table-action.red {
  color: var(--ath-red);
}



.table-action.disabled {
  opacity: .42;
  cursor: not-allowed;
}



.search-grid-athletes {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 190px 190px 190px auto;
  gap: 14px;
  align-items: end;
}



.form-field-ath {
  display: grid;
  gap: 7px;
}



.form-field-ath label {
  color: #344054;
  font-size: .74rem;
  font-weight: 950;
  text-transform: uppercase;
}



.input-icon-ath {
  position: relative;
}



.input-icon-ath i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #667085;
  pointer-events: none;
}



.input-ath,
.select-ath {
  width: 100%;
  height: 50px;
  border: 1px solid #d8dde7;
  border-radius: 14px;
  background: #fff;
  color: #101828;
  padding: 0 14px;
  outline: none;
  font: inherit;
  font-weight: 750;
}



.input-icon-ath .input-ath {
  padding-left: 42px;
}



.input-ath:focus,
.select-ath:focus {
  border-color: var(--ath-red);
  box-shadow: 0 0 0 4px rgba(255, 26, 26, .09);
}



.quick-stats-grid {
  gap: 16px;
  margin-bottom: 20px;
}



.quick-stat {
  border-radius: 18px;
  padding: 18px;
  gap: 14px;
}



.quick-stat i {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: rgba(255, 26, 26, .09);
  color: var(--ath-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}



.quick-stat strong {
  display: block;
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 950;
}



.quick-stat span {
  display: block;
  color: #667085;
  font-size: .78rem;
  font-weight: 850;
  margin-top: 4px;
}



.list-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 20px;
  align-items: start;
}



.rank-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  padding: 13px;
  border: 1px solid #edf0f4;
  border-radius: 15px;
  background: #fff;
}



.rank-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f2f4f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #344054;
  font-weight: 950;
}



.belts-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}



.belts-pagination-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 26, 26, .20);
  border-radius: 12px;
  background: #fff;
  color: #101828;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(16, 24, 40, .06);
  cursor: pointer;
}



.belts-pagination-btn:hover,
.belts-pagination-btn.active {
  background: var(--belt-red, #ff1a1a);
  border-color: var(--belt-red, #ff1a1a);
  color: #fff;
}



.belts-pagination-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  box-shadow: none;
}



.belts-pagination-btn:disabled:hover {
  background: #fff;
  border-color: rgba(255, 26, 26, .20);
  color: #101828;
}



#beltPromotionsAdvancedToggle.is-active {
  border-color: rgba(255, 26, 26, .22);
  background: rgba(255, 26, 26, .08);
  color: var(--belts-red, #ff1a1a);
}



.belts-section-shell {
  max-width: none;
  width: 100%;
}



.belts-section-horizontal-tabs {
  display: none !important;
}



.belts-section-workspace {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-width: 0;
}



.belts-section-side-menu {
  position: sticky;
  top: 92px;
  min-width: 0;
}



.belts-section-side-menu nav {
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(16, 24, 40, .08);
}



.belts-section-menu-group {
  display: grid;
  gap: 6px;
  min-width: 0;
}



.belts-section-menu-group>span {
  color: #98a2b3;
  font-size: .68rem;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}



.belts-section-menu-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 6px 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #344054;
  text-decoration: none;
  text-align: left;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}



.belts-section-menu-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f2f4f7;
  color: #667085;
  font-size: .9rem;
}



.belts-section-menu-link span {
  min-width: 0;
  overflow: hidden;
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}



.belts-section-menu-link:hover,
.belts-section-menu-link.active {
  background: #fff1f3;
  color: #b42318;
  transform: translateX(2px);
}



.belts-section-menu-link:hover i,
.belts-section-menu-link.active i {
  background: #fee4e2;
  color: #d92d20;
}



.belts-mobile-collapse-header {
  display: none;
}



.belts-section-main {
  display: grid;
  gap: 18px;
  min-width: 0;
}



@media(max-width: 1024px) {
.belts-section-workspace {
    grid-template-columns: minmax(0, 1fr);
  }



  .belts-section-side-menu {
    position: static;
  }



  .belts-section-side-menu nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}



@media(max-width: 768px) {
body.belts-clean-page .belts-section-workspace,
body.belts-clean-page .belts-section-main {
    gap: 10px;
  }



  body.belts-clean-page .belts-section-side-menu {
    margin-bottom: 0;
  }



  body.belts-clean-page .quick-filters {
    margin: 0;
  }



  body.belts-clean-page .belts-content-panel {
    margin-top: 0;
  }



  body.belts-clean-page .belts-mobile-collapsible {
    position: static;
  }



  body.belts-clean-page .belts-mobile-collapse-header {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 14px;
    background: #fff;
    color: #101828;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 28px rgba(16, 24, 40, .07);
  }



  body.belts-clean-page .belts-mobile-collapse-header>span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    color: inherit;
  }



  body.belts-clean-page .belts-mobile-collapse-header>span i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #fff1f3;
    color: #d92d20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: .9rem;
  }



  body.belts-clean-page .belts-mobile-collapse-header strong {
    min-width: 0;
    overflow: hidden;
    color: inherit;
    font-size: .84rem;
    font-weight: 950;
    line-height: 1.15;
    text-align: left;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }



  body.belts-clean-page .belts-mobile-collapse-header em {
    color: #667085;
    font-size: .72rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
  }



  body.belts-clean-page .belts-mobile-collapse-header>i {
    color: #667085;
    font-size: .78rem;
  }



  body.belts-clean-page .belts-mobile-collapsible.is-collapsed> :not(.belts-mobile-collapse-header) {
    display: none !important;
  }



  body.belts-clean-page .belts-section-side-menu {
    width: 100%;
  }



  body.belts-clean-page .belts-section-side-menu nav {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 8px;
  }



  body.belts-clean-page .quick-filters {
    display: grid;
    gap: 12px;
  }



  body.belts-clean-page .quick-filters.is-collapsed {
    margin-bottom: 0;
  }



  body.belts-clean-page .belts-section-side-menu.is-collapsed,
body.belts-clean-page .quick-filters.is-collapsed {
    margin-bottom: 8px;
  }
}



@media(max-width: 720px) {
.belts-section-side-menu nav {
    grid-template-columns: minmax(0, 1fr);
  }
}



@media(max-width: 1200px) {
.list-layout {
    grid-template-columns: 1fr;
  }



  .search-grid-athletes {
    grid-template-columns: 1fr 1fr;
  }



  .quick-stats-grid,
.metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}



@media(max-width: 760px) {
.search-grid-athletes,
.quick-stats-grid,
.metric-grid {
    grid-template-columns: 1fr;
  }
}



body.belts-clean-page #sysadminStaffRolesTable .app-table-actions {
  padding-right: 0;
}



body.belts-clean-page #sysadminStaffRolesTable .app-table-actions .table-action {
  width: 38px;
  height: 38px;
}



body.belts-clean-page .app-team-inline {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  min-width: 0;
}



body.belts-clean-page .app-team-inline-logo {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  border-radius: 999px;
  background: #fff;
  object-fit: cover;
  flex: 0 0 auto;
}



body.belts-clean-page .app-team-inline span {
  display: inline !important;
  margin: 0;
  color: #667085;
  font-size: .68rem;
  font-weight: 850;
  line-height: 1.15;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}



body.belts-clean-page .app-empty-state {
  min-height: 210px;
  border: 1px dashed rgba(16, 24, 40, 0.18);
  border-radius: 8px;
  background: #fff;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 28px;
  text-align: center;
  color: #667085;
}



body.belts-clean-page .app-empty-state i {
  color: #dc2626;
  font-size: 1.55rem;
}



body.belts-clean-page .app-empty-state strong {
  color: #101828;
}



body.belts-clean-page .app-empty-state p {
  max-width: 520px;
  margin: 0;
  font-size: .9rem;
}



body.belts-clean-page .app-loading-inline {
  min-height: 140px;
}



body.belts-clean-page .app-loading-inline .fa-spin {
  animation-duration: .65s;
}



body.belts-clean-page .app-table-loading-row {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 112px;
}



body.belts-clean-page .app-table .app-table-actions button,
body.belts-clean-page .app-table .app-table-actions a,
body.belts-clean-page .table-actions .table-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  flex: 0 0 42px;
  gap: 0;
  padding: 0;
  border: 1px solid var(--belts-border, #e6e9ef);
  border-radius: 14px;
  background: var(--belts-soft, #f6f7f9);
  color: var(--belts-text, #101828);
  font-size: 15px;
  line-height: 1;
  text-align: center;
  text-decoration: none !important;
  box-shadow: none;
}



body.belts-clean-page .app-table .app-table-actions button i,
body.belts-clean-page .app-table .app-table-actions a i,
body.belts-clean-page .table-actions .table-action i {
  color: currentColor;
  font-size: 15px;
  line-height: 1;
}



body.belts-clean-page .app-table .app-table-actions button>span,
body.belts-clean-page .app-table .app-table-actions a>span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}



body.belts-clean-page .app-table .app-table-actions button:hover,
body.belts-clean-page .app-table .app-table-actions a:hover,
body.belts-clean-page .table-actions .table-action:hover {
  background: #eef1f6;
  color: var(--belts-text, #101828);
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: none;
}



body.belts-clean-page .app-table .app-table-actions .primary-btn,
body.belts-clean-page .app-table .app-table-actions .secondary-btn,
body.belts-clean-page .app-table .app-table-actions .tertiary-btn,
body.belts-clean-page .app-table .app-table-actions .dark-btn,
body.belts-clean-page .app-table .app-table-actions .danger-btn,
body.belts-clean-page .app-table .app-table-actions .success-btn,
body.belts-clean-page .table-actions .table-action.red {
  border-color: var(--belts-border, #e6e9ef);
  background: var(--belts-soft, #f6f7f9);
  color: var(--belts-text, #101828);
  box-shadow: none;
}



body.belts-clean-page .app-table .app-table-actions button:disabled,
body.belts-clean-page .app-table .app-table-actions button.is-disabled,
body.belts-clean-page .app-table .app-table-actions button[aria-disabled="true"],
body.belts-clean-page .table-actions .table-action.disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}



body.belts-clean-page .app-table .app-table-actions button:disabled:hover,
body.belts-clean-page .app-table .app-table-actions button.is-disabled:hover,
body.belts-clean-page .app-table .app-table-actions button[aria-disabled="true"]:hover,
body.belts-clean-page .table-actions .table-action.disabled:hover {
  background: var(--belts-soft, #f6f7f9);
  color: var(--belts-text, #101828);
  transform: none;
}



body.belts-clean-page .table-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}



body.other-teams-page .other-teams-map-search-grid {
  grid-template-columns: minmax(220px, 1fr) minmax(190px, .85fr) auto auto;
}



@media (max-width: 1220px) {
body.other-teams-page .other-teams-map-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}



@media (max-width: 767px) {
body.other-teams-page .other-teams-map-search-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}



/* New model image shape normalization */


body.belts-clean-page .user-avatar {
  aspect-ratio: 1 / 1;
  border-radius: 50% !important;
  overflow: hidden;
}



body.belts-clean-page .user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50% !important;
  object-fit: cover;
}



body.belts-clean-page .app-team-inline-logo,
body.belts-clean-page .club-logo {
  aspect-ratio: 1 / 1;
  border-radius: 16px !important;
  overflow: hidden;
}



body.belts-clean-page .app-team-inline-logo img,
body.belts-clean-page .club-logo img {
  width: 100%;
  height: 100%;
  border-radius: inherit !important;
  object-fit: contain;
}


/* Shared form and filter components used across modules. */




.belts-form-shell {
  margin-top: -46px;
}




.belts-form-hero {
  min-height: 260px;
}




.belts-form-hero .belts-clean-hero-inner {
  min-height: 260px;
  grid-template-columns: 1fr;
  padding-bottom: 76px;
}




.belts-form-back {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}




.requirements-toolbar-actions {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-left: auto;
}




.requirements-toolbar-select {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 260px;
  margin: 0;
}




.requirements-toolbar-select span {
  color: #344054;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2px;
  line-height: 1.2;
  text-transform: uppercase;
}




.requirements-toolbar-select select {
  width: 100%;
  height: 46px;
  border: 1px solid #dfe3ea;
  border-radius: 12px;
  background: #fff;
  color: var(--belts-text, #101828);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  padding: 0 14px;
}




.requirements-toolbar-select input {
  width: 100%;
  height: 46px;
  border: 1px solid #dfe3ea;
  border-radius: 12px;
  background: #fff;
  color: var(--belts-text, #101828);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  padding: 0 14px;
}




.requirements-toolbar-select.is-locked select,
.requirements-toolbar-select.is-locked .select2-container--default .select2-selection--single {
  border-color: #e6e9ef;
  background: #f8fafc;
  color: #667085;
  cursor: not-allowed;
}




.requirements-toolbar-select.is-locked .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #667085;
}




.requirements-toolbar-select select:focus {
  border-color: rgba(255, 26, 26, .46);
  box-shadow: 0 0 0 4px rgba(255, 26, 26, .08);
  outline: none;
}




.requirements-toolbar-select input:focus {
  border-color: rgba(255, 26, 26, .46);
  box-shadow: 0 0 0 4px rgba(255, 26, 26, .08);
  outline: none;
}




.requirements-toolbar-select .select2-container,
.belts-form-field .select2-container {
  width: 100% !important;
}




.requirements-toolbar-select .select2-container--default .select2-selection--single,
.belts-form-field .select2-container--default .select2-selection--single {
  height: 46px;
  border: 1px solid #dfe3ea;
  border-radius: 12px;
  background: #fff;
}




.requirements-toolbar-select .select2-container--default .select2-selection--single .select2-selection__rendered,
.belts-form-field .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--belts-text, #101828);
  font-size: 14px;
  font-weight: 800;
  line-height: 44px;
  padding-left: 14px;
  padding-right: 34px;
}




.requirements-toolbar-select .select2-container--default .select2-selection--single .select2-selection__arrow,
.belts-form-field .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 44px;
  right: 8px;
}




.requirements-toolbar-select .select2-container--default.select2-container--focus .select2-selection--single,
.requirements-toolbar-select .select2-container--default.select2-container--open .select2-selection--single,
.belts-form-field .select2-container--default.select2-container--focus .select2-selection--single,
.belts-form-field .select2-container--default.select2-container--open .select2-selection--single {
  border-color: rgba(255, 26, 26, .46);
  box-shadow: 0 0 0 4px rgba(255, 26, 26, .08);
}




.belts-form-field .select2-container--default .select2-selection--single {
  height: 48px;
  border-color: #d0d5dd;
  border-radius: 14px;
}




.belts-form-field .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 15px;
  font-weight: 700;
  line-height: 46px;
}




.belts-form-field .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px;
}




body.belts-clean-page .belts-form-field.is-readonly {
  opacity: .72;
}




body.belts-clean-page .belts-form-field.is-readonly .select2-selection,
body.belts-clean-page .belts-form-field.is-readonly select,
body.belts-clean-page .belts-form-field.is-readonly input {
  cursor: not-allowed;
}




@media(max-width: 768px) {
.requirements-toolbar-actions,
.requirements-toolbar-select {
    width: 100%;
  }




  .requirements-toolbar-actions {
    align-items: stretch;
    justify-content: flex-start;
  }
}




.belts-form-card {
  background: #fff;
  border: 1px solid var(--belts-border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 44px rgba(16, 24, 40, .07);
}




.belts-form {
  width: 100%;
}




.belts-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}




.belts-form-wide {
  grid-column: 1 / -1;
}




.belts-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}




.belts-form-field label {
  color: #344054;
  font-size: 13px;
  font-weight: 900;
}




.belts-form-field input,
.belts-form-field select,
.belts-form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d0d5dd;
  border-radius: 14px;
  background: #fff;
  color: #101828;
  padding: 0 14px;
  outline: none;
  font-size: 15px;
  font-weight: 700;
}




.belts-form-field input[type="color"] {
  padding: 5px;
}




.belts-form-field textarea {
  min-height: 110px;
  padding: 14px;
  resize: vertical;
}




.belts-form-field input:focus,
.belts-form-field select:focus,
.belts-form-field textarea:focus {
  border-color: rgba(255, 26, 26, .65);
  box-shadow: 0 0 0 4px rgba(255, 26, 26, .10);
}




.belts-form-grades-editor {
  border: 1px solid #e6e9ef;
  border-radius: 16px;
  background: #f8fafc;
  padding: 16px;
}




.belts-form-grades-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: #344054;
  font-size: 13px;
  font-weight: 950;
}




.belts-form-section-help {
  margin: -2px 0 14px;
  color: #667085;
  font-size: .84rem;
  font-weight: 750;
  line-height: 1.45;
}




.belts-form-grades-list {
  display: grid;
  gap: 12px;
}




.belts-form-grade-row {
  display: grid;
  grid-template-columns: 64px minmax(180px, 1.1fr) minmax(120px, .6fr) minmax(120px, .6fr);
  gap: 14px;
  align-items: start;
  padding: 14px;
  border: 1px solid #e6e9ef;
  border-radius: 14px;
  background: #fff;
}




.belts-form-age-rule-row {
  grid-template-columns: 64px minmax(180px, 1.1fr) minmax(120px, .65fr) minmax(120px, .65fr) minmax(120px, .65fr) 52px;
  align-items: end;
}




.belts-form-small-action {
  min-height: 42px;
  width: auto;
  min-width: max-content;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
  box-shadow: none;
}




.belts-form-small-action span {
  overflow: visible;
  text-overflow: clip;
}




.belts-form-age-rule-remove {
  min-height: 42px;
  padding: 0 14px;
  box-shadow: none;
}




.belts-form-age-rule-remove {
  align-self: end;
  justify-self: end;
  width: 48px;
  padding: 0;
  color: var(--belts-red, #ff1a1a);
}




.belts-form-age-rule-row .belts-form-grade-description {
  grid-column: 2 / span 3;
}




.belts-form-age-rule-row .belts-form-grade-order {
  grid-row: 1 / span 2;
  align-self: stretch;
}




.belts-form-age-rule-row .belts-form-grade-active {
  grid-column: 5;
  align-self: stretch;
}




.belts-form-grade-order {
  min-height: 48px;
  border: 1px solid #d0d5dd;
  border-radius: 14px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}




.belts-form-grade-order span {
  color: #667085;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.1;
}




.belts-form-grade-order strong {
  color: #101828;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.1;
}




.belts-form-grade-description {
  grid-column: 2 / span 2;
}




.belts-form-grade-active {
  min-height: 48px;
}




.belts-form-switch {
  min-height: 58px;
  border: 1px solid #d0d5dd;
  border-radius: 14px;
  background: #f8fafc;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}




.belts-form-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}




.belts-form-switch-control {
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: #d0d5dd;
  position: relative;
  flex: 0 0 auto;
  transition: background .2s ease, box-shadow .2s ease;
}




.belts-form-switch-control::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(16, 24, 40, .18);
  transition: transform .2s ease;
}




.belts-form-switch input:checked+.belts-form-switch-control {
  background: var(--belts-red, #ff1a1a);
}




.belts-form-switch input:checked+.belts-form-switch-control::before {
  transform: translateX(20px);
}




.belts-form-switch input:focus-visible+.belts-form-switch-control {
  box-shadow: 0 0 0 4px rgba(255, 26, 26, .12);
}




.belts-form-switch span:last-child {
  min-width: 0;
  color: #344054;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}




.belts-form-actions {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #eef1f5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}




.belts-form-cancel {
  min-height: 52px;
  max-width: 100%;
  padding: 0 22px;
  border: 1px solid #d0d5dd;
  border-radius: 16px;
  color: #344054;
  background: #fff;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}




.belts-form-cancel:hover,
.belts-form-cancel:focus {
  text-decoration: none !important;
}




.belts-form-save {
  width: auto;
  min-width: 180px;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}




@media(max-width: 900px) {
.belts-form-shell,
.belts-form-shell .belts-clean-grid,
.belts-form-shell .belts-main-stack,
.belts-form-shell .belts-clean-side,
.belts-form-shell .belts-content-panel,
.belts-form-shell .belts-clean-progress-card,
.belts-form-shell .belts-clean-quote-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }




  .belts-form-shell .belts-clean-grid {
    grid-template-columns: minmax(0, 1fr);
  }




  .belts-form-grid {
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
  }




  .belts-form-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 18px;
    box-sizing: border-box;
  }




  .belts-form-field,
.belts-form-grades-editor,
.belts-form-grade-row,
.belts-form-age-rule-row,
.belts-form-switch {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }




  .belts-form-actions {
    flex-direction: column;
    align-items: stretch;
  }




  .belts-form-grade-row {
    grid-template-columns: 1fr;
  }




  .belts-form-age-rule-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }




  .belts-form-age-rule-row .belts-form-grade-order {
    min-height: 42px;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 14px;
  }




  .belts-form-age-rule-row .belts-form-grade-description {
    grid-column: auto;
  }




  .belts-form-age-rule-row .belts-form-grade-active {
    min-height: 46px;
    padding: 0 12px;
  }




  .belts-form-age-rule-row .belts-form-age-rule-remove {
    min-height: 44px;
  }




  .belts-form-age-rule-row .belts-form-grade-order,
.belts-form-age-rule-row .belts-form-grade-active,
.belts-form-age-rule-remove {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    justify-self: stretch;
    width: auto;
  }




  .belts-form-grade-description {
    grid-column: auto;
  }




  .belts-form-cancel,
.belts-form-save {
    width: 100%;
  }
}




.requirements-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}




.requirements-header h2 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 950;
  color: var(--belts-text, #101828);
}




.requirements-header p {
  margin: 0;
  color: var(--belts-muted, #667085);
  font-size: 14px;
}




.requirements-header .primary-btn {
  width: auto;
  margin-top: 0;
  padding: 0 24px;
}




@media(max-width: 768px) {
.requirements-header {
    flex-direction: column;
    align-items: flex-start;
  }




  .requirements-header .primary-btn {
    width: 100%;
  }
}




.belt-athletes-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}


/* Shared empty state */

.belts-empty {
  margin-top: 18px;
  padding: 22px;
  border: 1px dashed var(--belts-border);
  border-radius: 18px;
  background: var(--belts-soft);
  color: var(--belts-muted);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}
