/* /Layout/MainLayout.razor.rz.scp.css */
/* /Layout/NavMenu.razor.rz.scp.css */
.nav__menu[b-jycib1kc17] {
  position: fixed;
  bottom: 0rem;
  left: 0;
  right: 0;
  background-color: #ffffff;
  width: 100%;
  margin-inline: auto;
  box-shadow: 0 2px 16px hsla(228, 95%, 4%, .1);
  padding: 1rem 1.75rem;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  z-index: 100;
}

.nav__list[b-jycib1kc17] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* /Pages/Favorites/Favorites.razor.rz.scp.css */
.content-wrapper[b-qt1tq2sp3b] {
    display: flex;
    width: 100%;
    padding: 11rem 5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .content-section[b-qt1tq2sp3b] {
    display: flex;
    margin-bottom: -58px;
    width: 210px;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
  }
  
  .logo-container[b-qt1tq2sp3b] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .logo-circle[b-qt1tq2sp3b] {
    width: 4rem;
    height: 4rem;
  }
  
  .page-title[b-qt1tq2sp3b] {
    color: #000000;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
  }
  
  .page-description[b-qt1tq2sp3b] {
    color: #6b7280;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    width: 100%;
    margin: 16px 0 0 0;
  }
  
  .page-footer[b-qt1tq2sp3b] {
    margin-top: 114px;
  }
  
  .copyright-text[b-qt1tq2sp3b] {
    color: #6b7280;
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    margin: 0;
  }
  
/* /Pages/Home/ListMatchs/Calendar/Calendar.razor.rz.scp.css */
.calendar-wrapper[b-k9mt1kirdy] {
    overflow-x: auto;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: white;
    padding: 8px 0;
    transition: all 0.3s ease;
    
}

.calendar-wrapper[b-k9mt1kirdy]::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.calendar-strip[b-k9mt1kirdy] {
    display: flex;
    width: fit-content;
    min-width: max-content;
    gap: 12px;
    padding: 0 8px;
    transition: gap 0.3s ease;
}

.date-item[b-k9mt1kirdy] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 16px;
    border-radius: 8px;
    background-color: #f9fafb;
    cursor: pointer;
    row-gap: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.date-item.active[b-k9mt1kirdy] {
    background-color: #2563eb;
    color: #ffffff;
}

.day-name[b-k9mt1kirdy] {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    transition: font-size 0.3s ease, opacity 0.3s ease;
}

.day-number[b-k9mt1kirdy] {
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    transition: font-size 0.3s ease;
}

.date-item.active .day-name[b-k9mt1kirdy],
.date-item.active .day-number[b-k9mt1kirdy] {
    color: #ffffff;
}

/* Синяя точка под текущей датой */
.date-item.today:not(.active)[b-k9mt1kirdy]::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #2563eb;
    border-radius: 50%;
    pointer-events: none;
    transition: width 0.3s ease, height 0.3s ease, bottom 0.3s ease;
}

/* Компактный режим — точка меньше */
.calendar-wrapper.compact .date-item.today:not(.active)[b-k9mt1kirdy]::after {
    width: 3px;
    height: 3px;
    bottom: 2px;
}

/* ---------- КОМПАКТНЫЙ РЕЖИМ ---------- */
.calendar-wrapper.compact[b-k9mt1kirdy] {
    padding: 4px 0;
}

.calendar-wrapper.compact .calendar-strip[b-k9mt1kirdy] {
    gap: 6px;
}

.calendar-wrapper.compact .date-item[b-k9mt1kirdy] {
    padding: 4px 10px;
    border-radius: 6px;
}

.calendar-wrapper.compact .day-name[b-k9mt1kirdy] {
    font-size: 11px;
    opacity: 0.7;
}

.calendar-wrapper.compact .day-number[b-k9mt1kirdy] {
    font-size: 13px;
}

.date-item.today.compact:not(.active)[b-k9mt1kirdy]::after {
    bottom: 3px; 
    width: 3px;
    height: 3px;
}
/* /Pages/Home/ListMatchs/LeagueBlock/LeagueBlock.razor.rz.scp.css */
.matches-section[b-0fycdvzu84] {
    margin-top: 8px;
}

.league-container[b-0fycdvzu84] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.league-header[b-0fycdvzu84] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 10px;
    border-radius: 6px;
    background-color: #eff6ff;
    cursor: pointer;
}

.league-logo[b-0fycdvzu84] {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}

.league-name[b-0fycdvzu84] {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.league-actions[b-0fycdvzu84] {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}

.notification-badge[b-0fycdvzu84] {
    display: flex;
    background-color: #F3F4F6;
    padding: 4px 8px;
    border-radius: 4px;
    width: 20px;
    justify-content: center;

}

.notification-badge live[b-0fycdvzu84] {
    background-color: #FEF2F2;
}

.notification-dot[b-0fycdvzu84] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ef4444;
}

.notification-count[b-0fycdvzu84] {
    font-size: 12px;
    font-weight: 500;
    color: #ef4444;
}

.matches-count[b-0fycdvzu84] {
    font-size: 12px;
    font-weight: 500;
    color: #6B7280;
}

.favorite-button[b-0fycdvzu84] {
    display: flex;
    justify-content: center;
    color: #6B7280;
    background-color: inherit;
    padding: 6px;
    border: none;
    cursor: pointer;
}

.favorited[b-0fycdvzu84] {
    color: #2563eb;
}

.star-icon[b-0fycdvzu84] {
    width: 16px;
    height: 16px;
}

.matches-container[b-0fycdvzu84] {
    max-height: 0;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.matches-container.visible[b-0fycdvzu84] {}

.other[b-0fycdvzu84] {
    background-color: #F9FAFB;
}

.matches-container.open[b-0fycdvzu84] {
    max-height: 1000px;
    /* или auto — но не анимируется */
}
/* /Pages/Home/ListMatchs/ListMatches.razor.rz.scp.css */
.matches-widget[b-6fm7cc8g6v] {
  width: 100%;
  padding: 6px;
}

.widget-container[b-6fm7cc8g6v] {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 7px;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
}

.matches-section[b-6fm7cc8g6v] {
  margin-top: 8px;
}

.league-container[b-6fm7cc8g6v] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.league-header[b-6fm7cc8g6v] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 10px;
  border-radius: 6px;
  background-color: #eff6ff;
  cursor: pointer;
}

.league-logo[b-6fm7cc8g6v] {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.league-name[b-6fm7cc8g6v] {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

.league-actions[b-6fm7cc8g6v] {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.notification-badge[b-6fm7cc8g6v] {
  display: flex;
  background-color: #F3F4F6;
  padding: 4px 8px;
  border-radius: 4px;
  width: 20px;
  justify-content: center;

}

.notification-badge live[b-6fm7cc8g6v] {
  background-color: #FEF2F2;
}

.notification-dot[b-6fm7cc8g6v] {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ef4444;
}

.notification-count[b-6fm7cc8g6v] {
  font-size: 12px;
  font-weight: 500;
  color: #ef4444;
}

.matches-count[b-6fm7cc8g6v] {
  font-size: 12px;
  font-weight: 500;
  color: #6B7280;
}

.favorite-button[b-6fm7cc8g6v] {
  display: flex;
  justify-content: center;
  color: #6B7280;
  background-color: inherit;
  padding: 6px;
  border: none;
  cursor: pointer;
}

.favorited[b-6fm7cc8g6v] {
  color: #2563eb;
}

.star-icon[b-6fm7cc8g6v] {
  width: 16px;
  height: 16px;
}

.matches-container[b-6fm7cc8g6v] {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.matches-container.visible[b-6fm7cc8g6v] {}

.other[b-6fm7cc8g6v] {
  background-color: #F9FAFB;
}
/* /Pages/Home/ListMatchs/MatchList/Match.razor.rz.scp.css */
.match-card[b-vjs9c4lhpt] {
  display: flex;
  align-items: center;
  padding: 12px;
  background-color: #f9fafb;
}

.favorite[b-vjs9c4lhpt] {
  background-color: #eff6ff;
}

.match-card:not(:last-child)[b-vjs9c4lhpt] {
  border-bottom: 1px solid #e5e7eb;
}

.team[b-vjs9c4lhpt] {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.team.away[b-vjs9c4lhpt] {
  justify-content: flex-end;
}

.team-logo[b-vjs9c4lhpt] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.team-info[b-vjs9c4lhpt] {
  display: flex;
  flex-direction: column;
  width: 60%;
}

.away .team-info[b-vjs9c4lhpt] {
  align-items: flex-end;
  text-align: end;
}

.team-name[b-vjs9c4lhpt] {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
}

.team-status[b-vjs9c4lhpt] {
  font-size: 11px;
  font-weight: 400;
  color: #6b7280;
}

.score[b-vjs9c4lhpt] {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin: 0 8px;
}

.match-status[b-vjs9c4lhpt] {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px;
}

.live-indicator[b-vjs9c4lhpt] {
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-dot[b-vjs9c4lhpt] {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #ef4444;
}

.live-text[b-vjs9c4lhpt] {
  font-size: 11px;
  font-weight: 600;
  color: #ef4444;
}

.match-time[b-vjs9c4lhpt] {
  font-size: 11px;
  font-weight: 500;
  color: #6b7280;
}

.match-period[b-vjs9c4lhpt],
.match-day[b-vjs9c4lhpt] {
  font-size: 10px;
  font-weight: 400;
  color: #6b7280;
}
/* /Pages/Home/PopularMatch/PopularMatch.razor.rz.scp.css */
/* Main container */
.popular-sports--container[b-ex69itnv0c] {
    width: 100%;
    overflow: hidden;
}

.popular-sports--wrapper[b-ex69itnv0c] {
    width: 100%;
    padding: 12px;
    overflow: hidden;
}


/* Matches container */
.popular-matches--container[b-ex69itnv0c] {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    /* Add padding to ensure scrollbar doesn't overlap content */
    scroll-behavior: smooth;
    /* Add smooth scrolling for better user experience */
}

/* Match card styles */
.popular-match--card[b-ex69itnv0c] {
    flex: 1;
    min-width: 280px;
    /* Ensure cards don't get too small */
    background-color: var(--widget-color);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

/* Match header */
.popular-match--header[b-ex69itnv0c] {
    border-bottom: 1px solid var(--border-color);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popular-league--info[b-ex69itnv0c] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.popular-league--logo[b-ex69itnv0c] {
    width: 14px;
    height: 14px;
}

.popular-league--name[b-ex69itnv0c] {
    color: var(--time-color);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
    /* Limit width to prevent layout breaking */
}

.popular-match--status[b-ex69itnv0c] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.viewers-count-small[b-ex69itnv0c] {
    color: var(--time-color);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
}

.live-indicator[b-ex69itnv0c] {
    width: 3px;
    height: 3px;
    border-radius: 9999px;
    background-color: #dc2626;
    margin-left: 4px;
    margin-right: 4px;
}

.match-time[b-ex69itnv0c] {
    color: #dc2626;
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
}

/* Teams container */
.popular-teams--container[b-ex69itnv0c] {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popular-team--row[b-ex69itnv0c] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popular-team--info[b-ex69itnv0c] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.popular-team--logo[b-ex69itnv0c] {
    width: 22px;
    height: 22px;
}

.popular-team--name[b-ex69itnv0c] {
    color: #111827;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    /* Limit width to prevent layout breaking */
}

.popular-team--score[b-ex69itnv0c] {
    color: #111827;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
}

/* Viewer icons */
.viewer-icon[b-ex69itnv0c] {
    width: 12px;
    height: 12px;
}

.viewer-icon-small[b-ex69itnv0c] {
    width: 10px;
    height: 10px;
}
/* /Pages/Live/Live.razor.rz.scp.css */
.content-wrapper[b-amployzjn3] {
  display: flex;
  width: 100%;
  padding: 11rem 5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content-section[b-amployzjn3] {
  display: flex;
  margin-bottom: -58px;
  width: 210px;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
}

.logo-container[b-amployzjn3] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-circle[b-amployzjn3] {
  width: 4rem;
  height: 4rem;
}

.page-title[b-amployzjn3] {
  color: #000000;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
}

.page-description[b-amployzjn3] {
  color: #6b7280;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  width: 100%;
  margin: 16px 0 0 0;
}

.page-footer[b-amployzjn3] {
  margin-top: 114px;
}

.copyright-text[b-amployzjn3] {
  color: #6b7280;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  margin: 0;
}
/* /Pages/Loader/PageLodaer.razor.rz.scp.css */
/* From Uiverse.io by Satwinder04 */ 
.loader[b-7owmp0qj2b] {
  /* background-color: blue; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loader-text[b-7owmp0qj2b] {
  font-size: 14px;
  color: rgb(0, 0, 0);
  margin-bottom: 14px;
  align-self: center;
}

.loader-bar[b-7owmp0qj2b] {
  width: 10%;
  height: 5px;
  border-radius: 8px;
  background-color: rgb(0, 0, 0);
  animation: loader-bar-animation-b-7owmp0qj2b 2s ease-in-out infinite;
}

@keyframes loader-bar-animation-b-7owmp0qj2b {
  0% {
    /* transform: translateX(-100%) rotate(270deg); */
    transform: translateX(-100%);
  }

  50% {
    /* transform: translateX(100%) rotate(-90deg); */
    transform: translateX(100%);
  }

  100% {
    /* transform: translateX(-100%) rotate(270deg); */
    transform: translateX(-100%);
  }
}
/* /Pages/Profile/Profile.razor.rz.scp.css */
.content-wrapper[b-qz5cbvg19l] {
    display: flex;
    width: 100%;
    padding: 11rem 5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .content-section[b-qz5cbvg19l] {
    display: flex;
    margin-bottom: -58px;
    width: 210px;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
  }
  
  .logo-container[b-qz5cbvg19l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .logo-circle[b-qz5cbvg19l] {
    width: 4rem;
    height: 4rem;
  }
  
  .page-title[b-qz5cbvg19l] {
    color: #000000;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
  }
  
  .page-description[b-qz5cbvg19l] {
    color: #6b7280;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    width: 100%;
    margin: 16px 0 0 0;
  }
  
  .page-footer[b-qz5cbvg19l] {
    margin-top: 114px;
  }
  
  .copyright-text[b-qz5cbvg19l] {
    color: #6b7280;
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    margin: 0;
  }
  
