:root {
  --size-top3-min-height: 260px;
  --size-top3-mid: 132px;
  --size-top3-general: 30vw;
  --size-top3-general-negative: -30vw;
  --size-top3-avatar-offset: 50px;
  --animate-timing: cubic-bezier(.2, .8, .4, 1)
}

* {
  box-sizing: border-box;
}

html {
  font-size: 15px
}

body {
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
  -webkit-font-smoothing: antialiased !important;
  font-weight: 300;
}


body.disabled #sidenav,
body.disabled #main {
  filter: blur(3px);
}

body,
html,
button,
input,
select,
textarea,
.md-button {
  font-family: Roboto Condensed, Helvetica Neue, sans-serif;
  font-size: 1rem
}

.md-button {
  border-radius: .5rem;
}

/*
::-webkit-scrollbar-track{  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);  background-color: #F5F5F5;}
::-webkit-scrollbar{  width: 10px;  background-color: #F5F5F5;}
::-webkit-scrollbar-thumb{  }*/


.cp {
  cursor: pointer;
}

.text-small {
  font-size: .8rem
}

.text-dotted {
  border-bottom: 1px dotted currentColor
}

.text-dashed {
  border-bottom: 1px dashed currentColor
}

abbr {
  border-bottom: 1px dotted currentColor;
  display: inline-block;
  margin-bottom: 2px;
}


/*@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/MaterialIcons-Regular.eot); 
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(../fonts/MaterialIcons-Regular.woff2) format('woff2'),
    url(../fonts/MaterialIcons-Regular.woff) format('woff'),
    url(../fonts/MaterialIcons-Regular.ttf) format('truetype');
}*/

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 100 700;
  src: url(../fonts/MaterialSymbolsOutlined.woff2) format('woff2');
}

.material-icons {
  font-family: 'Material Icons' !important;
  font-weight: 400;
  font-size: 20pt;
  line-height: 20pt;
  text-transform: none !important
}


.text-left {
  text-align: left
}

.text-right {
  text-align: right
}

.text-center {
  text-align: center
}

.text-bold {
  font-weight: bolder;
}

.no-padding {
  padding: 0
}

.no-scroll {
  overflow: hidden
}

md-tabs md-tabs-canvas {
  padding-left: 1rem;
  padding-right: 1rem
}

md-tabs md-pagination-wrapper {
  border-radius: 1rem;
}

/*md-ink-bar {transform: scale(.6,1)}*/

.md-button,
.md-tab {
  text-transform: none;
}

.lb-logo {
  margin-top: 1rem
}

.lb-logo a {
  display: block;
  border: 0
}

.lb-logo img {
  height: 60px
}

md-toolbar .lb-logo {
  margin: 0;
  position: absolute;
  top: 12px;
}

md-toolbar .lb-logo .md-caption {
  display: none;
}

md-toolbar .lb-logo img {
  height: 48px
}

.lb-top3 {
  /*min-height: var(--size-top3-min-height);*/
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  z-index: 30;
  position: sticky;
  top: 0;

}

.lb-top3::after {
  content: '';
  position: absolute;
  height: 200px;
  width: 100%;
  bottom: 0;
  /* gradient background*/
  /*opacity: 0;
  animation: reveal-top-bg linear both;
  animation-duration: 1ms;
  animation-timeline: --topTimeline;
  animation-range: 0 200px;

  z-index: -1;
  backdrop-filter: blur(6px);*/
}


.lb-player-name {
  font-size: .8rem;
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
}

.lb-player-points {
  font-weight: bold;
  font-size: 1.2rem;
}

.lb-player-id {
  font-size: .7rem !important;
  font-weight: 300;
  opacity: .7;
}

.lb-list .lb-player-id {
  padding-left: 28px;
}

.lb-avatar {


  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-top: calc(var(--size-top3-avatar-offset) * -1);
  display: flex;
  justify-content: center;
  gap: .4rem;
  position: relative;
  z-index: 8;
}

@keyframes reveal-top-bg {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}


@keyframes reveal-avatar {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(0, 0);
    width: 30px;
    height: 30px;
    opacity: 0;
  }
}

.lb-avatar .lb-avatar-image {


  background-color: transparent;
  background-size: contain;

  border: 3px solid transparent;
  border-radius: 50%;

  width: 80px;
  height: 80px;
  position: relative;
  margin-bottom: 8px;

  /*ng-style="{'backgroundImage':'url('+(category.top3[1].player.foto ? category.top3[1].player.foto : './assets/images/jugadores/0.png?1')+')'}"*/
}

@supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
  .lb-avatar .lb-avatar-image {
    animation: reveal-avatar linear both;
    animation-duration: 1ms;
    animation-timeline: --topTimeline;
    animation-range: 0 150px;
  }

}

.lb-avatar:after {
  content: attr(data-rank);
  position: absolute;
  bottom: -9px;
  left: 50%;
  margin-left: -9px;

}

.lb-avatar:after,
.lb-player-name b {
  border: 1px solid transparent;
  vertical-align: middle;
  width: 21px;
  height: 18px;
  line-height: 18px;
  border-radius: 30%;
  text-align: center;
  font-weight: 400;
  font-size: .8rem;
}

.lb-player-name b {
  display: inline-block;
  border-color: rgba(255, 255, 255, .3);
}

.lb-top3 .rank {
  position: relative;
  border-radius: 1rem;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, .3);
  border: 1px solid rgba(255, 255, 255, .1);
  margin-left: .2rem;
  gap: .5rem;
  padding-bottom: .5rem
}

.lb-top3 .rank:first-of-type {
  margin-left: 0;
}


/*
.lb-top3 .rank>div.lb-avatar {
  transform: scale(0);
  transition: .5s transform var(--animate-timing);
  opacity: 0;
}

.lb-top3 .rank:nth-child(1)>div.lb-avatar {
  transition-delay: .5s
}

.lb-top3 .rank:nth-child(2)>div.lb-avatar {
  transition-delay: .9s;
  transition-duration: .7s;
}

.lb-top3 .rank:nth-child(3)>div.lb-avatar {
  transition-delay: .1s
}

.lb-top3.loaded .rank>div.lb-avatar {
  transform: scale(1.1);
  opacity: 1;
}
*/



.lb-top3 .rank-1 {
  padding-bottom: 20px
}

.lb-top3 .rank-1 .lb-avatar .icon {
  position: absolute;
  top: -33px
}

.lb-top3 .rank-1 .lb-avatar .icon md-icon {
  width: 30px;
  height: 30px
}

/*.rank-1 .lb-player-points{color: #FFAA00}
.rank-2 .lb-player-points{color: #009BD6}
.rank-3 .lb-player-points{color: #00D95F;}*/

.rank-1 .lb-avatar:after {
  background-color: #e69900
}

.rank-2 .lb-avatar:after {
  background-color: #008fc7
}

.rank-3 .lb-avatar:after {
  background-color: #00a146
}

.rank-1 .lb-avatar .lb-avatar-image {
  border-color: #FFAA00
}

.rank-2 .lb-avatar .lb-avatar-image {
  border-color: #009BD6
}

.rank-3 .lb-avatar .lb-avatar-image {
  border-color: #00D95F;
}

.lb-list {
  margin-top: 0;
  z-index: 3;
  position: relative;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}

.lb-list md-list {
  overflow: auto;
  /*height: calc(50vh - 120px);*/
}

/* Estilos para md-virtual-repeat-container */
.lb-virtual-repeat-container {
  height: calc(100vh - 380px);
  /* Altura dinámica basada en viewport */
  min-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Asegurar que el contenedor funcione bien en diferentes tamaños de pantalla */
@media (max-width: 959px) {
  .lb-virtual-repeat-container {
    height: calc(100vh - 350px);
    min-height: 250px;
  }
}

@media (min-width: 960px) and (max-width: 1279px) {
  .lb-virtual-repeat-container {
    height: calc(100vh - 370px);
  }
}

@media (min-width: 1280px) {
  .lb-virtual-repeat-container {
    height: calc(100vh - 390px);
  }
}

.lb-list md-list-item:after {
  content: '';
  position: absolute;
  width: calc(100% - 2rem);
  bottom: 0;
  right: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lb-search-modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, .35);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: self-start;

}

.lb-search-modal md-input-container {
  margin-bottom: 0;
  margin-top: 2rem;
}

.lb-search-modal .md-errors-spacer {
  display: none;
}

.lb-search-content {
  display: flex;
  flex-direction: column;
  z-index: 300;
  width: 80vw;
  max-width: 500px;
}

.lb-search-wrapper {
  pointer-events: all;
  width: 100%;
}

.lb-search-results {
  background-color: rgba(0, 0, 0, .5);
  display: flex;
  flex-direction: column;
  pointer-events: all;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  max-height: 60vh;
  overflow-y: auto;
}

/* Nuevo diseño de items del buscador */
.lb-search-item-wrapper {
  padding: 0.75rem 1.25rem;
  cursor: default;
  /* Temporalmente desactivado el cursor pointer */
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  color: #fff;
  pointer-events: none;
  /* Temporalmente desactivado el click */
}

.lb-search-item-wrapper:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 193, 7, 0.6);
}

.lb-search-item-wrapper.player-found-selected {
  background-color: rgba(255, 193, 7, 0.2);
  border-left-color: #ffc107;
}

.lb-search-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.lb-search-item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

.lb-search-item-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.lb-search-position {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffc107;
  min-width: 2.5rem;
  text-align: right;
  flex-shrink: 0;
}

.lb-search-name {
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lb-search-item-stats {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  font-size: 0.813rem;
}

.lb-search-points {
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.lb-search-prize {
  color: #66bb6a;
  font-weight: 500;
  white-space: nowrap;
  display: none;
  /* Temporalmente oculto */
}

/* Responsive para pantallas pequeñas */
@media (max-width: 600px) {
  .lb-search-avatar {
    width: 32px;
    height: 32px;
  }

  .lb-search-position {
    min-width: 2rem;
    font-size: 0.813rem;
  }

  .lb-search-item-content {
    gap: 0.5rem;
  }

  .lb-search-item-main {
    gap: 0.5rem;
  }

  .lb-search-name {
    font-size: 0.9rem;
  }

  .lb-search-points {
    font-size: 0.75rem;
  }

  .lb-search-item-stats {
    gap: 0.5rem;
  }
}

.lb-search-results button {
  color: #fff !important;
}

.lb-search-modal:before {
  /*Gradient background */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 200px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  pointer-events: all;

}

.lb-search-modal input {}

.lb-search-item.player-found-selected {
  background-color: rgba(255, 255, 255, .3);
}

md-list-item.player-selected {
  transition: background-color 1s;
}

md-list-item.player-selected h3,
md-list-item.player-selected .text-accent,
md-list-item.player-selected .rank-info {
  color: #000 !important
}

md-list-item.player-selected .lb-player-name b {
  border-color: #000 !important
}


.lb-search {
  position: fixed;
  bottom: 0;
  left: calc(50% - 24px);
  right: 0;
  width: 48px;
  height: 48px;
  z-index: 1;
}

.lb-title {
  margin-top: -1.3rem;
}

.md-tab {
  font-size: 0.8rem;
}

md-sidenav {
  font-size: .9rem
}

.lb-info .flyr {
  max-width: 100%;

}

.flyr {
  height: 200px;
}

.ranking-content .md-list-item-text {
  pointer-events: none;
}

.ranking-content md-list {
  padding: 0
}

.ranking-content md-list md-list-item:first-of-type button.md-ink-ripple {
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}

md-tabs-canvas.md-center-tabs {
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

.more-statistics,
.no-tournaments {
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, .5);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: .5rem;
  border-radius: 1rem;
}

.more-statistics {
  align-items: flex-end;
  margin-left: auto;
}

.no-tournaments {
  align-items: center;
}

.ranking-content {

  height: 100%;
  transition: .5s transform var(--animate-timing);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  z-index: 2;
  overflow: hidden;

  scroll-timeline-name: --topTimeline;

}

.slide:before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

.slide:before {
  top: 0;
  height: var(--size-top3-mid);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

/*.slide:after {
  top: var(--size-top3-mid);
  height: var(--size-top3-mid);
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  transform: translate(0px, 2rem)
}

.slide1.slide:after {
  top: 230px;
}*/

.slide1.slide:before {
  height: 200px
}

/*md-tabs.is-general .md-active .lb-top3{  height: var(--size-top3-general);}
md-tabs.is-general .md-active .ranking-content:before{  height: var(--size-top3-general-mid);}
md-tabs.is-general .md-active .ranking-content:after {top: var(--size-top3-general-mid); height:var(--size-top3-general-mid);}*/

/*md-tabs .ranking-content {transform: translate3d(0, var(--size-top3-general), 0);}*/

md-tabs.is-general .md-active .ranking-content {
  animation: ranking-content-general forwards 1s ease-out 1
}

md-tabs.is-event .md-active .ranking-content {
  animation: ranking-content-event forwards 1s ease-out 1
}

.ranking-button-lasttournament {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  padding-bottom: var(--size-top3-avatar-offset);

  padding-top: 1rem;
  gap: .5rem;
  z-index: 5;
}

.ranking-button-lasttournament .md-button {
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  align-self: end;
}

.ranking-button-lasttournament .md-button md-icon {
  margin-bottom: .2rem;
}


.rank-info {
  font-size: .7rem;
  font-weight: normal;
}

.rank-up,
.rank-down {
  display: inline-block;
  position: relative;
  margin-left: .7rem;
}

.rank-up:before,
.rank-down:before {
  content: '';
  position: absolute;
  top: .2rem;
  left: -.6rem;
  width: 0;
  height: 0;
  border-left: .25rem solid transparent;
  border-right: .25rem solid transparent;
}

.rank-up:before {
  border-bottom: .5rem solid rgb(0, 177, 0);
}

.rank-down:before {
  border-top: .5rem solid red
}

.snap {
  scroll-snap-type: x mandatory;
  display: flex;
  overflow-x: scroll;
  scrollbar-width: none;
  /* Para navegadores Firefox */
  -ms-overflow-style: none;
  /* Para navegadores Internet Explorer y Edge */
}

.snap::-webkit-scrollbar {
  display: none;
  /* Para navegadores Chrome, Safari y Opera */
}

.slide {
  min-width: 100%;
  /*height: 10vh;*/
  scroll-snap-align: start;
  position: relative;
  min-height: 120px;
}

.no-data {

  margin-top: 1rem;
}

.md-tab {
  padding-left: 10px;
  padding-right: 10px;
}

#canvasTournamentElement {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/*.tabs-buttons-horizontal {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  user-select: none;
  font-size: 1rem;
}

.tabs-buttons-horizontal::-webkit-scrollbar {
  display: none;
}

.tab-button-item {
  text-align: center;
  padding: 0.25rem .5rem;
  border-radius: 1rem;
  cursor: pointer;
  user-select: none;
}
*/

.pn-ProductNav_Wrapper {
  position: relative;

}

.pn-ProductNav {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  position: relative;
}

.pn-ProductNav,
.pn-ProductNav_Link:first-of-type {
  background: rgb(38, 38, 38);
}

.js .pn-ProductNav {
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.js .pn-ProductNav::-webkit-scrollbar {
  display: none;
}

.pn-ProductNav_Contents {

  transition: transform .2s ease-in-out;
  position: relative;
  transform: none;
  display: inline-flex;
  justify-content: center;
  padding-left: 110px;
  gap: .2rem;

}

.pn-ProductNav_Contents,
.pn-ProductNav_Link:first-of-type {
  height: 3.5rem;
}


.pn-ProductNav_Link {
  font-size: .8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70px;
  cursor: default;
}

.pn-ProductNav_Link small {
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
}

.pn-ProductNav_Link:first-of-type {

  transform: translate(0, 0);
  z-index: 10;
  width: 70px;
  padding-left: 0;
  padding-right: 0;
  left: 0;
  justify-content: center;
  /*pointer-events: none;
  opacity: 0;
  position: fixed;*/
}

.pn-ProductNav_Link.linkTop {
  position: relative;
}

.pn-ProductNav_Link.active {
  z-index: 0;
}

.pn-ProductNav_Link[aria-selected="true"] {
  color: #fff;
}

/* Resaltar tab del acumulado */
.pn-ProductNav_Link.is-acumulado {
  position: relative;
  font-weight: 600;
}

.pn-ProductNav_Link.is-acumulado::before {
  content: '🏆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.pn-ProductNav_Link.is-acumulado b,
.pn-ProductNav_Link.is-acumulado small {
  position: relative;
  z-index: 1;
}

.pn-ProductNav_Link.is-acumulado b {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.pn-ProductNav_Link.is-acumulado:not(.active) {
  opacity: 0.9;
}

.pn-ButtonMainTop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 3.5rem;
  z-index: 15;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pn-ButtonMainTop md-icon {
  position: absolute;
  right: 50%;
  bottom: -10px;
  margin-right: -10px;
  pointer-events: none;
}

.pn-Advancer {

  width: 2rem;

  appearance: none;
  background: transparent;
  padding: 0;
  border: 0;

  position: absolute;
  top: 0;
  bottom: 0;

  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;

}

.pn-Advancer:focus {
  outline: 0;
}

.pn-Advancer:hover {
  cursor: pointer;
}

.pn-Advancer_Left {
  left: 0;
  background: linear-gradient(90deg, rgba(38, 38, 38, 1), transparent);
  margin: 0 .5rem 0 100px;
}

[data-overflowing="both"]~.pn-Advancer_Left,
[data-overflowing="left"]~.pn-Advancer_Left {
  opacity: 1;
  pointer-events: all;
}

.pn-Advancer_Right {
  right: 0;
  background: linear-gradient(-90deg, rgba(38, 38, 38, 1), transparent);
  margin: 0 0 0 .5rem;
}

[data-overflowing="both"]~.pn-Advancer_Right,
[data-overflowing="right"]~.pn-Advancer_Right {
  opacity: 1;
  pointer-events: all;
}

.pn-ProductNav_Indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100px;
  background-color: transparent;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: transform .2s ease-in-out, background-color .2s ease-in-out;
  display: none;
}

.pn-ProductNav_Contents-no-transition {
  transition: none;
}

@keyframes ranking-content-general {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@keyframes ranking-content-event {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@media (max-width: 375px) {
  .md-tab {
    padding: .25rem;
    line-height: 2.3rem;
  }

  /*md
  -ink-bar {transform: scale(.9,1)}*/
}

@media (min-width: 480px) {
  /*.lb-top3 {
    height: 50vh;
  }*/

  .ranking-content:before {
    height: 25vh
  }

  .ranking-content:after {
    height: 25vh;
    top: 25vh;
  }
}

.avatar-container {
  position: relative;
  display: inline-block;
  margin-right: 16px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.avatar-container-top3 {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
}

.avatar-container,
md-list-item .md-avatar,
md-list-item .md-list-item-inner .md-avatar {
  width: 50px;
  height: 50px;
}

md-list-item .avatar-container .md-avatar {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;

}

.md-avatar {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.stars-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* Asegura que no interfiera con los clics */
}

.stars-container .fa-star {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  font-size: 8px;
  /* Tamaño fijo de la estrella */
  color: white;
  font-style: normal;
  background-color: rgb(153, 0, 0);
  transform: translate(-50%, -50%);
  /* Centra la estrella en su posición */
}

.stars-container .fa-star img {
  margin-left: 1px;
}

/* Room 1: 777poker */
body[theme-room="1"] .md-button.md-accent.md-raised {
  background-color: #ffaf1e !important;
  color: #000 !important;
  background-image: linear-gradient(to right, #d7b45d, #ffb100)
}

body[theme-room="1"] .md-button.md-accent.md-raised md-icon {
  color: #000 !important;
}

/* Room 5: Allstarclub */
body[theme-room="5"] .md-button.md-accent.md-raised {
  background-color: #ff9b1e !important;
  color: #000 !important;
  background-image: linear-gradient(to right, #ffaf1e, #ff9b1e)
}

body[theme-room="5"] .md-button.md-accent.md-raised md-icon {
  color: #000 !important;
}

@supports (hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none) {
  .safari-only .lb-top3 {
    min-height: 240px !important;
  }
}

/* Estilos para el selector de periodos */
.period-selector {}



/* Estilos para el diálogo de periodos */
.period-dialog {
  min-width: 400px;
  max-width: 600px;
  max-height: 80vh;
}

/* Estilos para el diálogo de carga */
.period-loading-dialog {
  box-shadow: none !important;
  background-color: transparent !important;
}

.period-loading-dialog .period-loading-content {
  padding: 16px 24px;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 1rem;
  text-align: center;
}

/* Resto de estilos del diálogo de periodos */
.period-dialog md-toolbar {
  min-height: 48px;
}

.period-dialog .md-toolbar-tools {
  height: 48px;
}

.period-dialog md-dialog-content {
  padding: 0;
}

.period-dialog .md-dialog-content {
  padding: 0;
}

.period-dialog md-list {
  padding: 0;
}

.period-dialog md-list-item {
  transition: opacity 0.3s ease;
}

.period-dialog md-list-item[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.period-dialog md-list-item .md-button {
  padding: 16px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.period-dialog md-list-item:last-child .md-button {
  border-bottom: none;
}

.period-dialog .periodo-fechas {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.period-dialog .periodo-descripcion {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.period-dialog md-icon.md-secondary {
  color: #4CAF50;
  margin-right: 0;
}

.period-dialog md-progress-circular.md-secondary {
  margin-right: -2px;
}

.period-dialog md-list-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.period-dialog md-list-item:hover:not([disabled]) {
  cursor: pointer;
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
  gap: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.loader-container-hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-progress {
  width: 80%;
  max-width: 300px;
}


.loader-logo {
  height: 60px;
}