* {
  padding: 0;
  margin: 0;
}
body {
  font-family: Arial, sans-serif;
  max-width: 600px;
  margin: auto;
  text-align: center;
  background-color: #181818;
  /* background-image: url(https://img.freepik.com/fotos-gratis/fundo-do-campo-de-grama-verde_1252-1098.jpg?t=st=1731388844~exp=1731392444~hmac=eade7d246d93c52c4958032f2910d164659d2ed6173da67e1023046ca734e2fa&w=1380); */
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
.d-flex {
  display: flex;
}
.gap-16 {
  gap: 16px;
}
.flex-center {
  align-items: center;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.flex-column {
  flex-direction: column;
}
h1 {
  font-size: 1.5em;
}
.container {
  background-color: #181818;
  backdrop-filter: blur(2px);
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  padding-top: 24px;
  padding-bottom: 128px;
}
.logo {
  width: 100px;
  border-radius: 500px;
}
.team,
.player-saved,
.player-temp {
  margin: 10px 0;
  padding: 10px;
}
.team {
  display: flex;
  align-items: center;
}
#savedPlayersButtons {
  display: flex;
  width: 100%;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 21px;
}
.card-player {
  padding: 6px 0px;
  width: 70px;
  flex: 1 1 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: center;
  /* background-color: #fffffff3; */
  border: 1px solid #ffffff;
  border-radius: 10px;
  font-size: 0.8em;
  font-weight: 600;
  transition: .3s;
}

.card-player img {
  width: 35px !important;
  height: 35px;
  object-fit: cover;
  border-radius: 500px;
}
.selected {
  background-color: #36a727; /* Cor de fundo quando o card é clicado */
  border: 1px solid #36a727;
}
#tempPlayerName {
  width: calc(100% - 12px);
  height: 25px;
  padding: 6px;
}

.addAvulso {
  appearance: none;
  padding: 10px 16px;
  border-radius: 10px;
  background-color: dodgerblue;
  color: #fff;
  outline: none;
  border: none;
  font-size: 1.2em;
}
.sortearTimes {
  appearance: none;
  padding: 10px 16px;
  border-radius: 10px;
  background-color: green;
  color: #fff;
  outline: none;
  border: none;
  width: calc(100% - 24px);
  font-size: 1.2em;
}
hr {
  height: 10px !important;
  background-color: transparent;
  color: transparent;
  border: none;
  outline: none;
}
#playerList {
  width: calc(100% - 28px);
  padding: 6px;
  height: 120px;
}
.box-infos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
}
.box-infos h4 {
  font-size: 1.2em;
}
.box-infos p {
  font-size: 1em;
}
#matchSchedule {
  font-size: 1.5em;
}
input, textarea {
  font-size: 16px;
}

.playing-teams {
  margin-top: 24px;
  display: flex;
  gap: 8px; /* Espaço entre os escudos dos times */
  align-items: center;
  justify-content: space-around;
}

.animation-section  {
position: absolute;
bottom: 0;
top: 0;
background-position: 100%;
background-size: contain;
background-repeat: no-repeat;
width: 100%;
display: none;
height: 100%;
background-color: #172027;
} 


.main-fader{
  width:100%;
  .loader {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    svg {
      height: 300px;
      display: block;
      margin: 0 auto;
      path {
        animation-duration: 1s;
        animation-name: pulse;
        animation-iteration-count: infinite;
        color: #26a380;

        &.path-7 {
          animation-delay: -1s
        }
        &.path-6 {
          animation-delay: -.875s
        }
        &.path-5 {
          animation-delay: -.75s
        }
        &.path-4 {
          animation-delay: -.625s
        }
        &.path-3 {
          animation-delay: -.5s
        }
        &.path-2 {
          animation-delay: -.375s
        }
        &.path-1 {
          animation-delay: -.25s
        }
        &.path-0 {
          animation-delay: -.125s
        }
      }
    }
  }
}


@keyframes pulse {
  0%     { opacity: .1; }
  30%    { opacity: .8; }
  100%   { opacity: .1; }
}
