:root {
  --app-primary-color: #d50000;

  --nav-bg: #fff;
  --nav-color: #6b7280;
  --nav-active: var(--app-primary-color);

  /* Updated dynamically by JS */
  --header-height: 0px;

  --bottom-nav-height: 20px;
}

/* =========================
   Reset
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  min-height: 100dvh;
  overflow-x: hidden;
  background: #f5f6fa;
}

/* =========================
   App Shell
========================= */

#root {
  position: relative;
  width: 100%;
  min-height: 100dvh;
}

#main-page {
  position: relative;
  width: 100%;
  min-height: calc(100dvh - var(--bottom-nav-height));
  padding-top: var(--header-height);
  padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom) + 5px);
  overflow-x: hidden;
}

/* =========================
   Top Navigation
========================= */

.app-top-nav-menu-layout {
  position: fixed;
  inset: 0 0 auto 0;

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

  background: var(--app-primary-color);

  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;

  padding-top: env(safe-area-inset-top);

  z-index: 1000;

  box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.app-top-nav-menu-layout-sec-one {
  position: relative;

  width: 100%;

  padding: 12px 16px 10px;

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

.right-end-nav-btns {
  position: absolute;
  top: 12px;
  right: 12px;
}

.search-app-btn {
  position: absolute;
  top: 12px;
  left: 12px;
}

.user-profile-img,
.app-more-nav-hamburger-menu,
.search-app-btn,
.close-index-search-btn {
  border: 0;
  background: transparent;
  padding: 0;
  outline: none;
}

.user-profile-img,
.app-more-nav-hamburger-menu,
.search-app-btn {
  color: #fff;
}

.user-profile-img svg,
.app-more-nav-hamburger-menu svg,
.search-app-btn svg {
  width: 28px;
  height: 28px;
}

/* =========================
   Search
========================= */

.search-overlay {
  position: fixed;
  inset: 0;

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

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  opacity: 0;
  visibility: hidden;

  transition: .25s;

  z-index: 1090;
}

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

.app-index-search-box {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  display: flex;
  gap: 10px;

  padding:
    calc(env(safe-area-inset-top) + 14px)
    16px
    16px;

  background: #fff;

  transform: translateY(-110%);
  transition: .35s;

  z-index: 1100;

  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.app-index-search-box.active {
  transform: translateY(0);
}

.app-index-search-box input {
  flex: 1;
  min-width: 0;

  border: 0;
  outline: none;

  padding: 12px 14px;

  border-radius: 10px;

  font-family: MontserratEB, sans-serif;
}

.close-index-search-btn svg {
  width: 28px;
  height: 28px;
  fill: #000;
}

/* =========================
   Date Selector
========================= */

.date-wrapper {
  width: 100%;
  padding: 10px 16px;
}

.date-scroll {
  display: flex;
  gap: 16px;

  overflow-x: auto;

  scroll-behavior: smooth;

  scrollbar-width: none;

  -webkit-overflow-scrolling: touch;
}

.date-scroll::-webkit-scrollbar {
  display: none;
}

.date-card {
  flex: 0 0 auto;

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

  user-select: none;

  transition: .3s;
}

.day-name {
  margin-bottom: 12px;

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

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

  font-family: MontserratEB, sans-serif;
}

.date-circle {
  width: 36px;
  height: 36px;

  border-radius: 50%;

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

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

  color: #fff;

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

  transition: .3s;

  font-family: MontserratEB, sans-serif;
}

.date-card.active .date-circle {
  background: #fff;
  color: var(--app-primary-color);

  transform: scale(1.08);
}

.date-card.active .day-name {
  color: #fff;
}

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

.date-card.active:hover .date-circle {
  transform: scale(1.08);
}



.bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;

  width: 100%;
  max-width: 100%;

  height: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom));

  padding-bottom: env(safe-area-inset-bottom);

  background: var(--nav-bg);

  border-top: 1px solid #ececec;

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

.bottom-nav .nav-item {
  flex: 1;

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

  gap: 4px;

  color: var(--nav-color);

  text-decoration: none;

  transition: .25s;
}

.bottom-nav .nav-item svg {
  width: 22px;
  height: 22px;
}

.bottom-nav .nav-item.active {
  color: var(--nav-active);
}

.bottom-nav .nav-item span {
  font-size: 12px;
  font-weight: 600;
}:root {
  --app-primary-color: #d50000;

  --nav-bg: #fff;
  --nav-color: #6b7280;
  --nav-active: var(--app-primary-color);

  /* Updated dynamically by JS */
  --header-height: 0px;

  --bottom-nav-height: 70px;
}

/* =========================
   Reset
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  min-height: 100dvh;
  overflow-x: hidden;
  background: #f5f6fa;
}

/* =========================
   App Shell
========================= */

#root {
  position: relative;
  width: 100%;
  min-height: 100dvh;
}

#main-page {
  position: relative;
  width: 100%;
  min-height: calc(100dvh - var(--bottom-nav-height));
  padding-top: var(--header-height);
  padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom) + 12px);
  overflow-x: hidden;
}

/* =========================
   Top Navigation
========================= */

.app-top-nav-menu-layout {
  position: fixed;
  inset: 0 0 auto 0;

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

  background: var(--app-primary-color);

  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;

  padding-top: env(safe-area-inset-top);

  z-index: 1000;

  box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.app-top-nav-menu-layout-sec-one {
  position: relative;

  width: 100%;

  padding: 12px 16px 10px;

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

.right-end-nav-btns {
  position: absolute;
  top: 12px;
  right: 12px;
}

.search-app-btn {
  position: absolute;
  top: 12px;
  left: 12px;
}

.user-profile-img,
.app-more-nav-hamburger-menu,
.search-app-btn,
.close-index-search-btn {
  border: 0;
  background: transparent;
  padding: 0;
  outline: none;
}

.user-profile-img,
.app-more-nav-hamburger-menu,
.search-app-btn {
  color: #fff;
}

.user-profile-img svg,
.app-more-nav-hamburger-menu svg,
.search-app-btn svg {
  width: 28px;
  height: 28px;
}

/********  Search drawer component *********/

.search-overlay {
  position: fixed;
  inset: 0;

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

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  opacity: 0;
  visibility: hidden;

  transition: .25s;

  z-index: 1090;
}

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

.app-index-search-box {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  display: flex;
  gap: 10px;

  padding:
    calc(env(safe-area-inset-top) + 14px)
    16px
    16px;

  background: #fff;

  transform: translateY(-110%);
  transition: .35s;

  z-index: 1100;

  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.app-index-search-box.active {
  transform: translateY(0);
}

.app-index-search-box input {
  flex: 1;
  min-width: 0;

  border: 0;
  outline: none;

  padding: 12px 14px;

  border-radius: 10px;

  font-family: MontserratEB, sans-serif;
}

.close-index-search-btn {
  height: 50px;
  width: 55px;
  background: #A4A4AF14;
  border-radius: 12px;
  transition: .3s;
  border: 1px solid #ececec;
}

.close-index-search-btn:active {
  transform: scale(0.97);
}

.close-index-search-btn svg {
  width: 20px;
  height: 20px;
  fill: #9b9b9b;;
}

.medium-header {
  font-family: BykerM;
}

/* =========================
   Date Selector
========================= */

.date-wrapper {
  width: 100%;
  padding: 10px 16px;
}

.date-scroll {
  display: flex;
  gap: 16px;

  overflow-x: auto;

  scroll-behavior: smooth;

  scrollbar-width: none;

  -webkit-overflow-scrolling: touch;
}

.date-scroll::-webkit-scrollbar {
  display: none;
}

.date-card {
  flex: 0 0 auto;

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

  user-select: none;

  transition: .3s;
}

.day-name {
  margin-bottom: 12px;

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

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

  font-family: MontserratEB, sans-serif;
}

.date-circle {
  width: 36px;
  height: 36px;

  border-radius: 50%;

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

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

  color: #fff;

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

  transition: .3s;

  font-family: MontserratEB, sans-serif;
}

.date-card.active .date-circle {
  background: #fff;
  color: var(--app-primary-color);

  transform: scale(1.08);
}

.date-card.active .day-name {
  color: #fff;
}

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

.date-card.active:hover .date-circle {
  transform: scale(1.08);
}

/* =========================
   Bottom Navigation
========================= */

.bottom-navigation-wrapper {
  position: fixed;

  left: 0;
  right: 0;
  bottom: 0;

  z-index: 1000;
}

.bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;

  width: 100%;
  max-width: 100%;

  height: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom));

  padding-bottom: env(safe-area-inset-bottom);

  background: var(--nav-bg);

  border-top: 1px solid #ececec;

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

.bottom-nav .nav-item {
  flex: 1;

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

  gap: 4px;

  color: var(--nav-color);

  text-decoration: none;

  transition: .25s;
}

.bottom-nav .nav-item svg {
  width: 22px;
  height: 22px;
}

.bottom-nav .nav-item.active {
  color: var(--nav-active);
}

.bottom-nav .nav-item span {
  font-size: 12px;
  font-weight: 600;
}

/********** cookie *************/

.cookie-box {
 position: fixed;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%) scale(0.6);
  width: 80%;
  max-width: 500px;
  background: #fff;
  color: #000;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  font-family: MontserratR;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.cookie-box.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 50%) scale(1);
  animation: popIn 0.4s ease;
}

@keyframes popIn {
  0% {
    transform: translate(-50%, 50%) scale(0.6);
    opacity: 0;
  }
  60% {
    transform: translate(-50%, 50%) scale(1.03);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 50%) scale(1);
  }
}

body.cookie-active {
  overflow: hidden;
  touch-action: none;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 999;
}

.cookie-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-content h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-family: MontserratEB ;
}

.cookie-content p {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.4;
  font-family: MontserratM;
}
.cookie-link {
  display: inline-block;
  margin: 8px 0;
  font-size: 0.8rem;
  color: #1c1c1c;
  cursor: help;
  font-family: MontserratEB;
}

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

.cookie-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: none;
  font-family: MontserratM;
  transition: .3s;
}
.cookie-actions button:active {
  transform: scale(.97);
}

#acceptCookies {
  background: var(--app-primary-color);
  color: #fff;
  font-family: MontserratEB;
}

#declineCookies {
  background: #4748561F;
  border: 1px solid transparent;
  color: #000;
  font-family: MontserratEB;
}



.app-main-profile-sec {
  position: fixed;
  top: 0; right: 0; bottom:0;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 9999;
  overflow: scroll;
  border: 1px solid #e5e5e5;
  
}

.app-main-profile-sec.active {
border-top-right-radius: 15px;
border-top-left-radius: 15px;
width: 300px;
  transform: translateX(0);
  
}

.profile-header {
  position: sticky;
  top: 0;
  height: 60px;
  background: #d50000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  z-index: 10;
  font-family: BykerM;
}

.close-nav-btn {
  position: absolute;
  right: 20px;
  font-size: 28px;
}

.profile-title {
  font-family: BykerM;
  padding: 25px 20px 10px;
  color: #999;
  font-size: 17px;
  font-weight: 600;
}

.menu-card {
  background: #fff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.menu-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  
}

.menu-card.active .menu-content {
  max-height: 300px;
  
}

.menu-header {
  font-family : BykerM;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  color: #e53935;
  font-size: 20px;
}

.menu-header .header-plus-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.menu-header .header-icon {
  fill: #000;
}


.menu-item {
  font-family: BykerR;
  padding: 22px 20px;
  border-top: 1px solid #efefef;
  font-size: 18px;
  color: #333;
}

.settings-title {
  font-family: BykerM;
  padding: 25px 20px 10px;
  color: #bbb;
  font-size: 20px;
}

.setting-row {
  font-family: BykerM;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-top: 1px solid #eee;
}

.menu-header {
  font-family: BykerM;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-arrow {
  transition: transform 0.3s ease;
}


.menu-card.active .menu-arrow {
  transform: rotate(180deg);
}

/****** app radio checkbox ********/
 .checkbox-wrapper-7 .tgl {
    display: none;
  }
  .checkbox-wrapper-7 .tgl,
  .checkbox-wrapper-7 .tgl:after,
  .checkbox-wrapper-7 .tgl:before,
  .checkbox-wrapper-7 .tgl *,
  .checkbox-wrapper-7 .tgl *:after,
  .checkbox-wrapper-7 .tgl *:before,
  .checkbox-wrapper-7 .tgl + .tgl-btn {
    box-sizing: border-box;
  }
  .checkbox-wrapper-7 .tgl::-moz-selection,
  .checkbox-wrapper-7 .tgl:after::-moz-selection,
  .checkbox-wrapper-7 .tgl:before::-moz-selection,
  .checkbox-wrapper-7 .tgl *::-moz-selection,
  .checkbox-wrapper-7 .tgl *:after::-moz-selection,
  .checkbox-wrapper-7 .tgl *:before::-moz-selection,
  .checkbox-wrapper-7 .tgl + .tgl-btn::-moz-selection,
  .checkbox-wrapper-7 .tgl::selection,
  .checkbox-wrapper-7 .tgl:after::selection,
  .checkbox-wrapper-7 .tgl:before::selection,
  .checkbox-wrapper-7 .tgl *::selection,
  .checkbox-wrapper-7 .tgl *:after::selection,
  .checkbox-wrapper-7 .tgl *:before::selection,
  .checkbox-wrapper-7 .tgl + .tgl-btn::selection {
    background: none;
  }
  .checkbox-wrapper-7 .tgl + .tgl-btn {
    outline: 0;
    display: block;
    width: 4em;
    height: 2em;
    position: relative;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .checkbox-wrapper-7 .tgl + .tgl-btn:after,
  .checkbox-wrapper-7 .tgl + .tgl-btn:before {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
  }
  .checkbox-wrapper-7 .tgl + .tgl-btn:after {
    left: 0;
  }
  .checkbox-wrapper-7 .tgl + .tgl-btn:before {
    display: none;
  }
  .checkbox-wrapper-7 .tgl:checked + .tgl-btn:after {
    left: 50%;
  }

  .checkbox-wrapper-7 .tgl-ios + .tgl-btn {
    background: #fbfbfb;
    border-radius: 2em;
    padding: 2px;
    transition: all 0.4s ease;
    border: 1px solid #e8eae9;
  }
  .checkbox-wrapper-7 .tgl-ios + .tgl-btn:after {
    border-radius: 2em;
    background: #fbfbfb;
    transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.3s ease, margin 0.3s ease;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 0 rgba(0, 0, 0, 0.08);
  }
  .checkbox-wrapper-7 .tgl-ios + .tgl-btn:hover:after {
    will-change: padding;
  }
  .checkbox-wrapper-7 .tgl-ios + .tgl-btn:active {
    box-shadow: inset 0 0 0 2em #e8eae9;
  }
  .checkbox-wrapper-7 .tgl-ios + .tgl-btn:active:after {
    padding-right: 0.8em;
  }
  .checkbox-wrapper-7 .tgl-ios:checked + .tgl-btn {
    background: var(--app-primary-color);
  }
  .checkbox-wrapper-7 .tgl-ios:checked + .tgl-btn:active {
    box-shadow: none;
  }
  .checkbox-wrapper-7 .tgl-ios:checked + .tgl-btn:active:after {
    margin-left: -0.8em;
  }
  
  
/*** search overview page ***/

.search-drawer{
    position:fixed;
    left:0;
    right:0;
    bottom:0;

    height: 80vh;

    background:#fff;

    border-radius:28px 28px 0 0;

    transform:translateY(100%);

    transition:.35s cubic-bezier(.2,.8,.2,1);

    z-index: 9999;

    display:flex;
    flex-direction:column;
}

.search-drawer.active {
  transform: translateY(0);
}

.search-backdrop {
  
  position: fixed;
  inset: 0;
  
  background: rgba(0, 0, 0, .18);
  
  backdrop-filter: blur(6px);
  
  opacity: 0;
  
  visibility: hidden;
  
  transition: .3s;
  
  z-index: 1000;
}

.search-backdrop.active {
  
  opacity: 1;
  
  visibility: visible;
  
}

.search-drawer-handle {
  
  width: 46px;
  
  height: 5px;
  
  background: #d8d8d8;
  
  border-radius: 999px;
  
  margin: 12px auto;
  
}

.search-header {
  display: flex;
  gap: 3px;
  position: sticky;
  
  top: 0;
  
  background: #fff;
  
  padding: 0 16px 14px;
  
  z-index: 5;
  
}

.search-body {
  
  flex: 1;
  
  overflow: auto;
  
  padding: 0 16px 24px;
  
}

/******** search results *********/

.search-results-panel {
  padding: 8px 16px 14px;
}

.search-results-title {
  margin: 0 0 12px;
}

.search-results-box {
  display: grid;
  gap: 10px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: none;
  width: 90%;
  min-height: 72px;
  padding: 12px 13px;
  
  border: 1px solid #ececec;
  border-radius: 38px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  text-align: left;
  
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  transition:
    transform 0.15s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.search-result-item:hover {
  border-color: #dedede;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.search-result-item:active {
  transform: scale(0.99);
}

.search-result-item:focus-visible {
  outline: none;
  border-color: var(--app-primary-color);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06);
}

.search-result-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f7f7f7;
  overflow: hidden;
  padding: .5em;
}

.search-result-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 50%;
}

.search-result-icon-fallback {
  font-size: 18px;
  line-height: 1;
}

.search-result-content {
  flex: 1;
  min-width: 0;
}

.search-result-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin-bottom: 6px;
}

.search-result-name {
  font-family: BykerM;
  font-size: 0.96rem;
  font-weight: 700;
  color: #141414;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-type {
  font-family: BykerR;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f2f2f2;
  color: #6f6f6f;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.search-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 12px;
  color: #7b7b7b;
  font-family: BykerR;
}

.search-result-meta span {
  position: relative;
}

.search-result-meta span+span::before {
  content: "•";
  margin-right: 10px;
  color: #c2c2c2;
  font-family: BykerR;
}

.search-empty-state {
  font-family: BykerM;
  padding: 18px 14px;
  border: 1px dashed #e2e2e2;
  border-radius: 16px;
  background: #fafafa;
  color: #777;
  font-size: 0.93rem;
  text-align: center;
}

/* Recent searches */
.recent-searches-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.recent-search-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-family: BykerR;
  max-width: 100%;
  padding: 10px 12px;
  
  border: 1px solid #e9e9e9;
  border-radius: 14px;
  background: #fff;
  color: #222;
  
  font: inherit;
  text-align: left;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.recent-search-chip span {
  font-family: BykerM;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.recent-search-chip small {
  font-size: 11px;
  color: #7c7c7c;
  line-height: 1.2;
  font-family: BykerR;
}

.app-search-output {
  text-align: center;
  font-family: BykerM;
  padding: 1em;
}

/******************************/

/****** prediction type  *******/

.which-prediction-wrapper{
    display:flex;
    gap:12px;
    overflow-x:auto;
    padding:12px 15px;
    scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;
    margin-top: 9em;
}

.which-prediction-wrapper::-webkit-scrollbar{
    display:none;
}

.prediction-link{
  font-family: NotoSansR;
    flex-shrink: 0;
    text-decoration: none;
    color:#333;
    background:#f3f3f3;
    border-radius: 30px;
    padding: 8px 19px;
    font-size:16px;
    transition:.25s;
    white-space:nowrap;
    cursor: help;
}

.prediction-link:hover{
    background:#e9e9e9;
}

.prediction-link.active{
    background: var(--app-primary-color);
    color:#fff;
}


/************* leagues list page *******************/

/* Top bar */
.top-nav-search {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 1em;
  background: #d60000;
}

/* Page layout */
.container {
  max-width: 600px;
  margin: auto;
  padding: 0.5em;
}

h1 {
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.leagues-wrapper {
  margin-top: 5em;
  padding: 0.5em;
  padding-bottom: 1em;
}

.header-txt-leagues-page {
  font-family: BykerM;
  font-size: 1rem;
}


.league-wrap {
  margin-bottom: 6px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 30px;
  background: #fff;
  color: #222;
  transition: transform 0.3s ease, background 0.3s ease;
}

.league-wrap:active {
  transform: scale(0.98);
}

.league-header-leagues-page {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6.5px 8.5px;
  transition: background-color 0.2s ease;
}

.league-header-leagues-page:hover {
  background: #38393a12;
}

.league-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: BykerM;
  font-size: 0.98em;
}

.league-img-head {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.arrow {
  position: absolute;
  right: 12px;
  width: 15px;
  height: 15px;
  color: #555;
  transform-style: preserve-3d;
  transition: transform .35s ease;
}

.league-wrap.active .arrow {
  transform: rotateX(180deg);
}


.league-list {
  max-height: 0;
  overflow-y: auto;
  background: #fff;
  transition: max-height 0.35s ease;
}

.league-wrap.active .league-list {
  max-height: 600px;
}

.league-card {
  margin: 0;
  padding: 8px 12px;
  border-top: 1px solid #f0f0f0;
}

.league-card:hover {
  background: #f6faff;
}

.league-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  color: #222;
  text-decoration: none;
  font-family: BykerR;
  font-size: 0.9em;
  font-weight: 500;
  line-height: 1;
  cursor: none;
}

.league-link img {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.league-link .add-league-to-favs {
  position: absolute;
  right: 0.1em;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0;
  line-height: 0;
}

.league-link .add-league-to-favs svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: #555;
}

/* Favorite button */
.fav-btn {
  position: relative;
}

.fav-btn .fav-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.fav-btn .fav-outline {
  opacity: 1;
  transform: scale(1);
}

.fav-btn .fav-filled {
  opacity: 0;
  transform: scale(0.7);
}

.fav-btn.active .fav-outline {
  opacity: 0;
  transform: scale(0.7);
}

.fav-btn.active .fav-filled {
  opacity: 1;
  transform: scale(1);
}

/* Search */
.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-container input[type="text"] {
  width: 250px;
  padding: 15px 40px 15px 20px;
  border: 1px solid #00000003;
  border-radius: 30px;
  outline: none;
  background: #fff;
  color: #000;
  font-family: BykerR;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: width 0.4s ease, box-shadow 0.3s ease;
}

.search-container input[type="text"]:focus {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);
}

.search-container svg {
  position: relative;
  left: -37px;
  width: 20px;
  height: 20px;
  stroke: #000;
}

.next-world-cup-count-downs {
  cursor: help;
  color: #fff;
  
}

/**** world cup countdown  *****/

.wc-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: 18px;
  background: var(--card-bg, #fff);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
  text-align: center;
}

.wc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right,
      rgba(34, 197, 94, .08),
      transparent 45%);
  pointer-events: none;
}

/* Tournament Type */

.wc-card small:first-child {
  font-family: MontserratEB;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .8rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #6b7280;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Year */

.wc-card h2 {
  font-family: MontserratEB;
  margin: 0;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #111827;
}

/* Tournament Name */

.wc-card h3 {
  font-family: MontserratEB;
  margin: .5rem 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #374151;
}

/* Host */

.tournament-host-countries-wc-c-p {
  font-family: NotoSansR;
margin: .35rem 0;
color: #6b7280;
font-size: .95rem;
}

.tournament-host-countries-wc-c-p strong {
  font-family: BykerM;
}


/* Countdown */

.wc-card h1 {
  font-family: MontserratEB;
  margin: 1.5rem 0 .5rem;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #111827;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.04em;
}

/* Status */

.wc-live {
  font-family: MontserratEB;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1rem;
  padding: .45rem 1rem;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  animation: wcPulse 1.2s infinite;
}

@keyframes wcPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, .45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

/* Footer Text */
.wc-card small {
  font-family: NotoSansR;
}
.wc-card small:last-child {
  font-family: NotoSansR;
  display: block;
  margin-top: .75rem;
  color: #9ca3af;
  font-size: .9rem;
}

/* Mobile */

@media (max-width: 640px) {
  .wc-card {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .wc-card h2 {
    font-size: 2.4rem;
  }

  .wc-card h3 {
    font-size: 1.1rem;
  }

  .wc-card h1 {
    font-size: 2.4rem;
  }
}


/***************** league pages ******************/

.league-page {
    --primary: #3b82f6;
    --secondary: #2563eb;
    --bg: #f3f6fb;
    --card: #ffffff;
    --text: #111827;
    --text-light: #6b7280;
    --border: #e5e7eb;
    --radius: 18px;
    --shadow: 0 8px 30px rgba(0, 0, 0, .02);
    --transition: .3s ease;
    
    width: 100%;
    box-sizing: border-box;
    
    font-family: Inter, sans-serif;
    color: var(--text);
    background: var(--bg);
    
    margin: 0;
    padding: 0 0 3em;
}
/* Base */
.league-page img{
  display:block;
  max-width:100%;
}

.league-page button{
  border:none;
  background:none;
  font:inherit;
  
}

.league-page a{
  color:inherit;
  text-decoration:none;
}

/* Loading */
.league-page .loading-screen{
  position:fixed;
  inset:0;
  background:#fff;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:999;
  transition:.4s;
}

.league-page .spinner{
  width:48px;
  height:48px;
  border-radius:50%;
  border:4px solid #ddd;
  border-top:4px solid var(--primary);
  animation:leagueSpin 1s linear infinite;
}

@keyframes leagueSpin{
  100%{ transform:rotate(360deg); }
}

/* =========================
   League Header
========================= */

.league-page .league-header{
    width:100%;
    box-sizing:border-box;

    position:relative;
    overflow:hidden;

    padding: 10px;

    margin:0;
    border-radius:0;

    color:#fff;
    background:  var(--app-primary-color);
}


.league-page .league-header::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top left, rgba(255,255,255,.15), transparent 60%);
}

.league-page .overlay{
  position:absolute;
  inset:0;
  backdrop-filter:blur(8px);
}

.league-page .league-top{
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: 5px;
  z-index:5;
}

.league-page .back-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  cursor: help;
  transition: .3s;
}

.league-page .back-btn:active {
    transform: scale(1.1);
}

.league-page .back-btn span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.league-page .back-btn svg{
  width:25px;
  height:25px;
  fill:#fff;
  display:block;
}

.league-page #seasonSelect{
  padding:10px 16px;
  border:none;
  border-radius:12px;
  background:#fff;
  font-weight:600;
  outline:none;
  
}

.league-page .league-info{
  position:relative;
  display:flex;
  align-items:center;
  gap:18px;
  z-index:5;
}

.league-page #leagueLogo{
  width: 30px;
  height: 30px;
  object-fit: contain;
  background:#fff;
  border-radius: 50%;
  padding: 5px;
}

.league-page #leagueName{
  font-family: BykerM;
  font-size: 23px;
  font-weight: 400;
  line-height:1.1;
}

.league-page #leagueCountry{
  margin-top:5px;
  opacity: .9;
  font-size:12px;
  font-family: BykerR;
}

.league-page .fav-btn{
  margin-left:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  height: 35px;
  width: 35px;
  border-radius: 50%;
}

.league-page .fav-btn:active {
    background: #D5D5D51C;
}

.league-page .fav-btn svg{
  width:20px;
  height: 20px;
  stroke:#fff;
  fill:#fff;
  transition:.25s;
}

.league-page .fav-btn.active svg{
  fill:#ffd54a;
  stroke:#ffd54a;
}

/* Tabs */
.league-page .tabs{
  display:flex;
  background:#fff;
  box-shadow:0 2px 12px rgba(0,0,0,.05);
  position:sticky;
  top:0;
  z-index:50;
}

.league-page .tab{
  flex:1;
  padding:15px 11px;
  font-weight: 400;
  color:#666;
  transition:.3s;
  position:relative;
  font-family:BykerM;
  text-align:center;
}

.league-page .tab.active{
  color:var(--app-primary-color);
}

.league-page .tab.active::after{
  content:"";
  position:absolute;
  left:20%;
  bottom:2px;
  width:60%;
  height:3px;
  background:var(--app-primary-color);
  border-radius:50px;
}

/* Content */
.league-page main{
  padding: 10px;
 
}

.league-page .page{
  display:none;
  animation:leagueFade .35s;
}

.league-page .page.active{
  display:block;
}

@keyframes leagueFade{
  from{
    opacity:0;
    transform:translateY(10px);
  }
  to{
    opacity:1;
    transform:none;
  }
}

/* Cards */
.league-page .card{
  background:var(--card);
  border-radius:var(--radius);
  padding: 10px;
  margin-bottom:18px;
  box-shadow:var(--shadow);
}

.league-page .card h2{
  font-family:BykerM;
  font-size: 15px;
  margin-bottom:20px;
  font-weight: 400;
}

/* Info Grid */
.league-page .info-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  font-family:BykerR;
}

.league-page .info-grid div{
  background:#f8fafc;
  padding:18px;
  border-radius:15px;
}

.league-page .info-grid span{
  display:block;
  font-size:13px;
  color:var(--text-light);
  margin-bottom:8px;
}

.league-page .info-grid strong{
  font-size:22px;
}

/* Table */
.league-page .table-container{
  overflow-x:auto;
  font-family: BykerR;
}

.league-page table{
  width:100%;
  border-collapse:collapse;
}

.league-page th{
  font-family:BykerM;
  background:#f1f5f9;
  padding:14px;
  font-size:14px;
  text-align:left;
  white-space:nowrap;
}

.league-page td{
  padding:14px;
  border-bottom:1px solid var(--border);
  font-size:15px;
  vertical-align:middle;
}

.league-page .table-team{
    font-family: BykerM;
  display:flex;
  align-items:center;
  gap:10px;
}

.league-page .table-team img{
  width:26px;
  height:26px;
  object-fit:contain;
  flex-shrink:0;
}

/* Position tags */
.league-page .position{
  width:34px;
  height:34px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color:#fff;
}

.league-page .cl{ background:#16a34a; }
.league-page .el{ background:#2563eb; }
.league-page .ecl{ background:#f59e0b; }
.league-page .rel{ background:#ef4444; }

/* Matches */
.league-page .match-item{
  padding:14px 0;
  border-bottom:1px solid var(--border);
}

.league-page .match-item:last-child{
  border-bottom:none;
}

.league-page .match-teams{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}

.league-page .match-team{
  display:flex;
  align-items:center;
  gap:10px;
}

.league-page .match-team img{
  width:28px;
  height:28px;
  object-fit:contain;
  flex-shrink:0;
}

.league-page .match-meta{
  margin-top:10px;
  display:flex;
  justify-content:space-between;
  color:var(--text-light);
  font-size:13px;
}

/* Teams */
.league-page .teams-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(130px,1fr));
  gap:16px;
}

.league-page .team-card{
  padding:16px;
  background:#f8fafc;
  border-radius:15px;
  text-align:center;
  transition:.25s;
}

.league-page .team-card:hover{
  transform:translateY(-4px);
}

.league-page .team-card img{
  width:60px;
  height:60px;
  margin:0 auto 10px;
  object-fit:contain;
}

/********** FEATURED MATCH **********/

/********** MATCH CONTAINER **********/
.league-page .featured-match{
    position:relative;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
}

/********** MATCH ACCENT BAR **********/


/********** MATCH HEADER **********/
.league-page .featured-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:8px;
    margin-bottom:8px;
}

/********** MATCH LEAGUE **********/
.league-page .featured-league{
    display:flex;
    align-items:center;
    gap:6px;
    min-width:0;
}

.league-page .featured-league img{
    width:25px;
    height:25px;
object-fit: contain;
background:#fff;
border-radius: 50%;
padding: 5px;
}

.league-page .featured-league span{
    font:11px BykerM;
    color:#222;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

/********** MATCH STATUS **********/
.league-page .match-status{
    padding:2px 8px;
    border-radius:30px;
    font:9px BykerM;
    text-transform:uppercase;
    letter-spacing:.3px;
    flex-shrink:0;
}

.league-page .match-status.live{
    background:#ffecec;
    color:#d60000;
}

.league-page .match-status.finished{
    background:#eef9f0;
    color:#17853d;
}

.league-page .match-status.halftime{
    background:#fff5df;
    color:#b77900;
}

.league-page .match-status.upcoming{
    background:#eef5ff;
    color:var(--app-primary-color);
}

/********** MATCH DATE **********/
.league-page .featured-date{
    display:flex;
    justify-content:center;
    gap:6px;
    margin-bottom:10px;
    font:10px BykerR;
    color:#888;
}

/********** MATCH TEAMS **********/
.league-page .featured-teams{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
}

/********** MATCH TEAM **********/
.league-page .featured-team{
    font-family: BykerR;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:4px;
    text-align:center;
}

.league-page .featured-team img{
    width: 15px;
height: 15px;
object-fit: contain;
background:#fff;
border-radius: 50%;
padding: 5px;
}

.league-page .featured-team strong{
    font:11px BykerM;
    color:#222;
    line-height:1.2;
}

/********** MATCH SCORE **********/
.league-page .featured-score{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:4px;
    min-width:48px;
    font:13px BykerM;
    color:#222;
}

.league-page .featured-score small{
    color:#aaa;
    font-size:10px;
}

/********** MATCH PREDICTIONS **********/
.league-page .featured-bottom{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:6px;
}

/********** PREDICTION BUTTONS **********/
.league-page .featured-bottom div{
    padding:6px 4px;
    border:1px solid #ececec;
    border-radius:8px;
    background:#fafafa;
    text-align:center;
    transition:.25s;
}

.league-page .featured-bottom strong{
    display:block;
    margin-bottom:2px;
    font:9px BykerM;
    color:#888;
    text-transform:uppercase;
}

.league-page .featured-bottom span{
    display:block;
    font:11px BykerM;
    color:#222;
}

.league-page .featured-bottom div:hover{
    border-color:var(--app-primary-color);
    background:#f7fbff;
}



/* =====================================================
   TOP SCORER
===================================================== */

.league-page .top-scorer{
    display:flex;
    align-items:center;
    gap:20px;
    border-radius:18px;
    transition:.25s ease;
}


/* ==========================================
   PLAYER PROFILE
========================================== */

.league-page .top-scorer-image{
    position:relative;
    width:90px;
    height:90px;
    flex-shrink:0;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* Player */

.league-page .player-photo{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    background:#fff;
    border:4px solid #fff;

    box-shadow:
        0 0 0 1px #e7e7e7,
        0 12px 22px rgba(0,0,0,.08);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.league-page .top-scorer:hover .player-photo{
    transform:scale(1.04);
}

/* ==========================================
   CLUB BADGE
========================================== */

.league-page .club-badge{
    position:absolute;

    top:-8px;
    left:20%;

    transform:translateX(-50%);

    width:32px;
    height:32px;

    background:#fff;

    border-radius:50%;

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

    border:2px solid #fff;

    box-shadow:
        0 4px 12px rgba(0,0,0,.15);

    z-index:5;
}

.league-page .club-badge img{
    width:20px;
    height:20px;
    object-fit:contain;
}

/* ==========================================
   POSITION BADGE
========================================== */

.league-page .position-badge{

    position:absolute;

    bottom:-8px;
    left:50%;

    transform:translateX(-50%);

    min-width:38px;
    height:22px;

    padding:0 10px;

    border-radius:30px;

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

    background:var(--app-primary-color);

    color:#fff;

    font-family:MontserratEB;
    font-size:10px;
    letter-spacing:.5px;

    box-shadow:
        0 4px 12px rgba(0,0,0,.18);

    z-index:5;
}

/* Optional colours */

.position-gk{
    background:#f59e0b;
}

.position-def{
    background:#2563eb;
}

.position-mid{
    background:#16a34a;
}

.position-att{
    background:#dc2626;
}

/* ==========================================
   PLAYER DETAILS
========================================== */

.league-page .top-scorer-text{
    flex:1;
    min-width:0;
}

.league-page .top-scorer-text strong{
    display:block;

    font-family:MontserratEB;
    font-size:19px;
    line-height:1.2;

    color:#202020;

    margin-bottom:4px;
}

.league-page .top-scorer-text>p{

    font-family:BykerR;
    font-size:14px;

    color:#707070;

    margin-bottom:14px;
}

/* ==========================================
   PLAYER STATS
========================================== */

.league-page .top-scorer-text small{

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

    gap:15px;

    padding:9px 12px;

    margin-bottom:8px;

    background:#f7f8fa;

    border-radius:12px;

    font-family:BykerR;
    font-size:13px;

    color:#555;
}

.league-page .top-scorer-text small:last-child{
    margin-bottom:0;
}

.league-page .top-scorer-text small span:first-child{

    color:#888;

}

.league-page .top-scorer-text small span:last-child{

    font-family:BykerM;
    color:#202020;

}

/* Highlight goals */

.league-page .top-scorer-text small:last-child{

    background:#eef7ff;

}

.league-page .top-scorer-text small:last-child span{

    color:var(--app-primary-color);

    font-family:BykerM;

}

/* ==========================================
   SKELETON
========================================== */

.league-page .skeleton{

    background:
        linear-gradient(
            90deg,
            #ececec 25%,
            #f8f8f8 50%,
            #ececec 75%
        );

    background-size:200% 100%;

    animation:topScorerSkeleton 1.1s linear infinite;

}

.league-page .skeleton-avatar{

    width:90px;
    height:90px;

    border-radius:50%;

}

@keyframes topScorerSkeleton{

    from{
        background-position:200% 0;
    }

    to{
        background-position:-200% 0;
    }

}

/* ==========================================
   EMPTY
========================================== */

.league-page .empty-state{

    padding:35px;

    text-align:center;

    color:#8a8a8a;

    font-family:BykerR;
    font-size:14px;

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:480px){

    .league-page .top-scorer{

        gap:15px;
        padding:16px;

    }

    .league-page .top-scorer-image{

        width:74px;
        height:74px;

    }

    .league-page .player-photo{

        border-width:3px;

    }

    .league-page .club-badge{

        width:26px;
        height:26px;

    }

    .league-page .club-badge img{

        width:16px;
        height:16px;

    }

    .league-page .position-badge{

        min-width:32px;
        height:20px;

        font-size:9px;

    }

    .league-page .top-scorer-text strong{

        font-size:17px;

    }

    .league-page .top-scorer-text>p{

        font-size:13px;

    }

    .league-page .top-scorer-text small{

        padding:8px 10px;
        font-size:12px;

    }

}


/* Responsive */
@media (max-width:768px){
  .league-page .league-info{
    flex-wrap:wrap;
  }

  .league-page #leagueLogo{
    width:64px;
    height:64px;
  }

  .league-page #leagueName{
    font-size:24px;
  }

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

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

  .league-page .tabs{
    overflow-x:auto;
  }

  .league-page .tab{
    min-width:110px;
  }
}

/****************************************/


/************ DARK THEME ***********/
body.dark-theme {
  background: #101010;
  color: white;
  transition: .3s;
}

body.dark-theme  .date-circle{
  background: #1010107D;
  color: var(--app-primary-color);
}

body.dark-theme .date-card.active .date-circle{
  background: #101010;
}


body.dark-theme .date-card .day-name{
  color: #101010;
}

/*******/

body.dark-theme .app-main-profile-sec{
  background: #101010;
  color: #fff;
}

body.dark-theme .remove-search-btn svg {
  fill: #fff;
}

body.dark-theme .menu-card{
  background: #101010;
}

body.dark-theme .setting-row{
  background: #101010;
}

body.dark-theme {
  
}

body.dark-theme {
  
}

body.dark-theme {
  
}

body.dark-theme {
  
}

body.dark-theme {
  
}

body.dark-theme {
  
}

body.dark-theme {
  
}

body.dark-theme {
  
}

/********/

body.dark-theme .app-index-search-box{
  background: #101010;
}

body.dark-theme .close-index-search-btn svg {
  fill: #fff;
}

body.dark-theme .recent-searches-icon {
  stroke: #fff;
  fill: #fff;
}
.close-index-search-btnn{
  outline: none;
  border: none;
  background: transparent;
}
/*********/

body.dark-theme .checkbox-wrapper-7 .tgl-ios:checked + .tgl-btn {
  background: #101010;
}