/* style.css */
:root {
  --base-spacing: 1rem;
  --column-padding: 0rem;
  --sidebar-width: calc(25% - var(--base-spacing));
  --main-width: calc(75% - var(--base-spacing));
  --header-height: 40px;
  --icon-size: 1.25rem;
  --hamburger-width: 24px;
  --border-radius: 8px;
  --primary-color: #222;
  --secondary-color: #333;
  --bg-color: #fff;
  --text-color: #000;
  --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

html,
body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Lato", sans-serif;
}

header {
  width: 100%;
  background-color: var(--primary-color);
  padding: 15px 0;
}

h6 {
  font-weight: 700;
}

.header-container {
  max-width: 77%;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 32px;
  align-items: center;
}

.logo img {
  height: 100%;
  width: auto;
}

.header-right {
  display: flex;
  gap: var(--base-spacing);
  align-items: center;
}

.icon-link,
.theme-toggle,
.language-toggle {
  color: var(--secondary-color);
  font-size: var(--icon-size);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle {
  display: none !important;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--base-spacing) / 2);
}

.menu-text {
  margin: 0 0 20px 10px;
}
.header-icons {
  display: flex;
  gap: var(--base-spacing);
  align-items: center;
  margin-left: auto;
}

.hamburger {
  display: block;
  width: var(--hamburger-width);
  height: 2px;
  background: var(--secondary-color);
  position: relative;
  transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: var(--hamburger-width);
  height: 2px;
  background: var(--secondary-color);
  transition: all 0.3s;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.icon-link {
  color: #333;
  font-size: var(--icon-size);
  text-decoration: none;
  display: flex; /* Garante alinhamento correto dos ícones */
  align-items: center;
}

/* Utilidades de visibilidade */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

.content-wrapper {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: var(--base-spacing);
  padding: 0 15px;
}

.sidebar-left {
  flex: 0 0 23%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 20px 0;
  margin-top: 20px;
  overflow: hidden;
}

.sidebar-left span {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.sidebar-left .fas.fa-trophy {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 16px;
  background: rgba(255, 102, 0, 0.1);
  padding: 8px;
  border-radius: 50%;
}

.main-content {
  flex: 0 0 74%;
  padding: 20px 0;
  margin-top: 20px;
  padding: var(--base-spacing);
  border-radius: var(--border-radius);
  background-color: var(--bg-color);
  box-shadow: var(--box-shadow);
  min-width: 0;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  min-height: 100vh;
}

.sidebar-left:hover,
.main-content:hover,
.sidebar-right:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.main-content,
.sidebar-right {
  padding: var(--base-spacing);
  border-radius: var(--border-radius);
  background-color: var(--bg-secondary, #fff);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  min-width: 0;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  min-height: 100vh;
}

.theme-toggle,
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle,
.menu-toggle i {
  font-size: var(--icon-size);
}

/* Transições suaves para mudanças de cor */
.icon-link,
.theme-toggle i,
.hamburger,
.hamburger::before,
.hamburger::after {
  transition: color 0.3s ease, background-color 0.3s ease;
}

/* Estilos para o menu móvel */
.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--header-height) + var(--base-spacing));
  left: 0;
  right: 0;
  background-color: var(--bg-secondary, #fff);
  padding: var(--base-spacing);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style-type: none;
}

.mobile-menu ul li {
  margin-bottom: var(--base-spacing);
}

.mobile-menu ul li a {
  color: var(--text-primary, #333);
  text-decoration: none;
  font-size: 1.1rem;
  display: block;
  padding: calc(var(--base-spacing) / 2) 0;
}

.language-toggle img {
  width: 55px; /* Para uma imagem um pouco maior */
  height: auto;
  display: block;
}

.language-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--icon-size);
  height: var(--icon-size);
}

.logo-site {
  max-height: 38px;
  margin-left: -1rem;
}

.menu-leagues-desktop {
  padding: 0 !important;
}

.menu-leagues-desktop ul {
  list-style: none;
  padding: 0;
  margin: 0 !important;
}

.menu-leagues-desktop li {
  margin-bottom: 2px;
}

.menu-leagues-desktop a {
  text-decoration: none;
}

.menu-leagues-desktop .menu-link,
.mobile-menu .menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  color: #444;
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-leagues-desktop .menu-link:hover,
.mobile-menu .menu-link:hover {
  background-color: rgba(255, 102, 0, 0.05);
  border-left: 3px solid var(--accent-color);
  color: #000;
}

.menu-link-content {
  display: flex;
  align-items: center;
  flex: 1;
}

.logo-menu {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
}

.orange-icon {
  color: var(--accent-color);
  font-size: 12px;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.menu-link:hover .orange-icon {
  transform: translateX(3px);
  opacity: 1;
}

.fa-chevron-right {
  font-size: 0.5rem;
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  width: 100%;
  padding: 10px 0; /* Adicione padding vertical para mais espaço */
}
.menu-link-content {
  display: flex;
  align-items: center;
}

.nome-liga {
  font-size: 1.2rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 10px;
}

.nome-liga img {
  border-radius: 50%;
  object-fit: cover;
}

footer {
  width: 100%;
  padding: var(--base-spacing);
  margin-top: 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #f8f9fa;
}

.footer-links {
  margin-bottom: 0.5rem;
}

.footer-link,
.footer-link:hover {
  text-decoration: none;
}

.footer-link {
  color: #f8f9fa !important;
}

.footer-divider {
  margin: 0 0.5rem;
}

.footer-text {
  margin-bottom: 1rem;
}

.footer-copyright {
  font-size: 0.875rem;
}

/* Espaçamento entre as seções do footer */
.footer-content > * + * {
  margin-top: 0.5rem;
}

.logo-time {
  width: 46px !important;
  height: 46px;
}

.logo.rounded {
  border-radius: 100% !important;
  object-fit: cover;
}
.logo-time.rounded {
  border-radius: 100% !important;
  object-fit: cover;
}
.logo-partida {
  width: 8rem !important;
  height: 8rem;
}
.logo-partida.rounded {
  border-radius: 50% !important;
  object-fit: cover;
}
.img-campeonato {
  width: 5rem !important;
  height: 5rem;
  border-radius: 100%;
}
.logo-liga {
  max-width: 24px !important;
  max-height: 24px !important;
  width: auto;
  height: auto;
  border-radius: 100%;
}
.logo-subliga {
  max-width: 24px !important;
  height: 24px !important;
  width: auto;
  border-radius: 100%;
  object-fit: cover;
  margin-right: 10px;
}

.logo-aba {
  max-width: 24px !important;
  height: 24px !important;
  width: auto;
  border-radius: 100%;
  object-fit: cover;
}
.partidas {
  justify-content: space-between;
  align-items: center;
  border: solid 1px;
  border-color: #f3f4f8;
  margin: 0 0 5px 0;
  font-size: 0.9rem;
  padding: 5px;
  border-radius: var(--border-radius);
  background-color: var(--bg-secondary, #fff);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.analise {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.4rem;
  background-color: #2b2b2b;
  margin-bottom: 5px;
  font-size: 0.9rem;
}
.liga-title {
  display: flex;
  align-items: center;
  height: 3.5rem;
}
.liga-title-url {
  display: inline-flex;
  align-items: center;
  height: 3.5rem;
  margin-bottom: 5px;
  justify-content: flex-end;
}

.pagination {
  margin-top: 1.5rem !important;
  display: flex;
  justify-content: center;
}

.pagination a {
  text-decoration: none;
  padding: 5px 10px;
  margin-right: 5px;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
}

.pagination a.active {
  font-weight: bold;
}

.pagination a:hover {
  font-weight: bold;
}
.gols {
  padding: 10px 40px !important;
  text-align: center;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.gols-resultado {
  font-size: 4rem;
}

.status {
  padding-top: 5px;
}

.estadio {
  padding: 5px 0px;
}

.tempo {
  padding: 10px 10px !important;
  text-align: center;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navmenu {
  padding: 6px 13px;
  border-radius: 15px;
  color: white;
  font-weight: bold;
}

.ao-vivo {
  padding: 6px 13px;
  border-radius: 15px;
  color: #f8feff !important;
  border: 1px solid #ff0000;
  font-weight: bold;
}

.aovivo {
  padding: 3px 8px;
  border-radius: 15px;
  background-color: #ff0000;
  color: #f8feff !important;
  font-weight: bold;
}

.ao-vivo:hover {
  background-color: #f8f9fa;
  color: #ff0000 !important;
  border: 1px solid #ff0000;
  font-weight: bold;
}

.play {
  background-color: #e72b40;
}
.transparente {
  background-color: transparent;
  color: transparent;
}
.player-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  font-size: 0.8rem;
  padding: var(--base-spacing);
  border-radius: var(--border-radius);
  background-color: var(--bg-secondary, #fff);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.setas {
  width: 36px;
  height: 30px;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #4f4f4f;
  border: none;
}
.luz-vertical {
  background: repeating-linear-gradient(
    90deg,
    #f65353,
    #cf2828 20%,
    #df2f2f 40%
  );
  background-size: 100px 100px;
  animation: move-it 4s linear infinite;
}
@keyframes move-it {
  0% {
    background-position: initial;
  }
  100% {
    background-position: 100px 0px;
  }
}

.loading-indicator {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #007bff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
  margin: 0 auto;
}
.button-container {
  margin-left: -1.8rem;
}
.tab-container {
  display: flex;
  flex-direction: column;
}
.tab-buttons {
  display: flex;
  margin-bottom: 10px;
}
.tab-button {
  flex: 1;
  padding: 10px;
  text-align: center;
  cursor: pointer;
}

.tab-content {
  display: none;
  padding: 10px;
}
.tab-content.active {
  display: block;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

a {
  color: #000000 !important;
}
a:hover {
  color: #525252 !important;
}

.datepicker-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Preto com 50% de opacidade */
  z-index: 999; /* Menor que o z-index do datepicker */
  display: none;
}

.ui-datepicker {
  z-index: 1000 !important; /* Garante que o datepicker fique acima do overlay */
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}
.resultados {
  background-image: url("../img/background-resultados-1.webp");
  background-size: cover;
  background-position: center;
  margin: 0 0 5px 0;
  font-size: 0.9rem;
  text-align: center;
  border-radius: 12px;
}

.resultado-partida {
  padding-top: 0px;
}

.times-resultado {
  font-size: 2rem;
}

.transparency {
  background-color: rgba(43, 43, 43, 0.6);
  border-radius: 12px;
}
#informacoes-partida {
  border-radius: 12px;
}
.space-between {
  display: inline-block;
  margin-right: 3px;
}

.space {
  padding: 0.7rem;
}
.text-event {
  font-size: 1rem;
}
.outros-dados {
  font-size: 0.8rem;
}

.border-container {
  display: flex;
  border: 1px solid #ddd; /* Define as bordas externas */
  border-radius: 5px; /* Adiciona cantos arredondados */
  margin-bottom: 5px;
}

.text-event-col1,
.text-event-col2,
.text-event-col3 {
  font-size: 0.9rem;
  height: 2.9rem;
  display: flex;
  align-items: center;
}

.text-event-col1,
.text-event-col3 {
  width: 45% !important;
}

.text-event-col1 {
  justify-content: flex-end;
}

.text-event-col3 {
  justify-content: flex-start;
}

.text-event-col2 {
  width: 10% !important;
  justify-content: center;
}

.text-statistic-col1,
.text-statistic-col2,
.text-statistic-col3 {
  font-size: 0.9rem;
  height: 2.9rem;
  display: flex;
  align-items: center;
}

.text-statistic-col1 {
  justify-content: flex-end !important;
}

.text-statistic-col3 {
  justify-content: flex-start !important;
}

.text-statistic-col2 {
  justify-content: center !important;
}

.text-penalty-col1 {
  font-size: 0.9rem;
  height: 2.9rem;
  display: flex;
  align-items: center;
  justify-content: end;
  width: 45% !important;
  text-align: end;
}
.text-penalty-col2 {
  font-size: 0.9rem;
  height: 2.9rem;
  align-items: center;
  justify-content: center !important;
  width: 10% !important;
  display: flex;
}
.text-penalty-col3 {
  font-size: 0.9rem;
  height: 2.9rem;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 45% !important;
  text-align: start;
}

.gols-penalty {
  font-size: 1.8rem;
}
.penalty {
  font-size: 3.8rem;
}
.nav-tabs .nav-link {
  margin-bottom: none !important;
  border: none !important;
  border-top-left-radius: none !important;
  border-top-right-radius: none !important;
  --bs-nav-tabs-link-active-bg: none !important;
}
.nav-link.active {
  color: white !important;
  margin-bottom: 10px !important;
}
.shirt {
  color: #feffed;
}
.label-escalacao {
  font-size: 1rem;
}

.grid-partidas-desktop {
  display: block !important;
}
.grid-partidas-mobile {
  display: none !important;
}
.apito {
  width: 24px;
}
.t-modal .modal-content {
  background-color: #161616;
}
.t-modal .modal-header {
  border-bottom: none !important;
}
::-webkit-input-placeholder {
  font-style: italic;
}
:-moz-placeholder {
  font-style: italic;
}
::-moz-placeholder {
  font-style: italic;
}
:-ms-input-placeholder {
  font-style: italic;
}

.dark {
  background-color: #2b2b2b;
}

.liga-header {
  display: flex;
  align-items: center;
}

.words {
  margin-left: 10px;
}

.liga-pais {
  font-size: 0.8rem;
  color: #6d6d6d;
}

.menu a,
.liga-link,
.liga-link-data,
.liga-link-ao-vivo {
  text-decoration: none !important;
}

.pesquisa {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.data-ativa {
  justify-content: space-between;
  border: solid 1px;
  border-color: #f3f4f8;
  border-radius: var(--border-radius);
  background-color: var(--bg-secondary, #fff);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 6px 13px;
  font-weight: bold;
}

.linha-torneio {
  display: flex;
  align-items: center;
  margin: 1.5rem 0 !important;
}

.seotext {
  font-size: 0.9rem;
}

/* Contêiner da tabela com rolagem horizontal */
.table-container {
  overflow-x: auto;
  width: 100%;
}

/* Fixar a primeira coluna (Posição do ranking) */
.standings-table tr td.rank,
.standings-table tr th.rank {
  position: sticky;
  left: 0;
  z-index: 3; /* Garante que fique sobre as outras colunas */
  white-space: nowrap;
}

/* Fixar a segunda coluna (Time) */
.standings-table tr td.time,
.standings-table tr th.time {
  position: sticky;
  left: 30px; /* Ajuste conforme o tamanho da primeira coluna */
  z-index: 2;
  white-space: nowrap;
}

/* Ajuste das colunas fixas no cabeçalho */
.standings-table thead th.rank {
  left: 0;
}

.standings-table thead th.time {
  left: 30px;
}

/* Ajuste das últimas 5 partidas */
.standings-table tr td.ult-partidas {
  white-space: nowrap;
}

.jogadores {
  padding: 0 10px 0 10px;
}

.todos-jogos {
  padding: 6px 13px;
  border-radius: 15px;
  font-weight: bold;
}

.todos-jogos:hover {
  color: #ffffff !important;
  font-weight: bold;
}

.ultimos-confrontos {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.ultimos-confrontos th {
  padding: 6px 13px;
  font-weight: bold;
}

.bannerPartida {
  color: #ddd !important;
}

/* Estilos personalizados para o jQuery UI Datepicker */
.ui-datepicker {
  border: 1px solid #ccc !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
  padding: 10px !important;
  font-family: "Lato", sans-serif !important;
}

.ui-datepicker-header {
  border-bottom: 1px solid #ccc !important;
  border-radius: 8px 8px 0 0 !important;
  padding: 10px 0 !important;
  text-align: center !important;
}

.ui-datepicker-title {
  font-size: 1.2rem !important;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  cursor: pointer !important;
  font-size: 1.2rem !important;
  color: #fff !important;
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover {
  color: #ff6600 !important;
}

.ui-datepicker-calendar th {
  padding: 10px 0 !important;
  font-weight: bold !important;
}

.ui-datepicker-calendar td {
  text-align: center !important;
  border: none !important;
  cursor: pointer !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: none !important;
}

/* medias queries */

/* Ajuste a seção de responsividade */
@media (max-width: 768px) {
  .header-container {
    max-width: 90%;
  }
  .nome-liga {
    font-size: 1rem;
    font-weight: 700;
  }
  .sidebar-left {
    display: none;
  }
  .content-wrapper {
    grid-template-columns: 100%;
    min-width: 100% !important;
    padding: 0;
  }
  .main-content {
    flex: 0 0 100%;
    padding: 20px 10px;
    margin-top: 0 !important;
  }

  .menu-toggle {
    display: flex !important;
  }

  /* Estilo do menu hamburguer ativo */
  .menu-toggle.active .hamburger {
    background: transparent;
  }

  .menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }

  .menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
  }

  /* Ajuste para o menu móvel */
  body.menu-open {
    overflow: hidden;
  }

  .mobile-menu {
    max-height: calc(100vh - var(--header-height) - var(--base-spacing));
    overflow-y: auto;
    list-style: none;
  }

  .ui-datepicker {
    top: 40% !important; /* Move um pouco para cima em telas menores */
  }

  .liga-link,
  .liga-link-data,
  .liga-link-ao-vivo {
    font-size: 12px; /* Diminui ainda mais o tamanho da fonte */
    margin-right: 3px; /* Reduz o espaçamento entre os links */
  }

  /* Reduzir o padding dos links para caberem melhor na tela */
  .liga-link,
  .liga-link-data,
  .liga-link-ao-vivo {
    padding: 2px 5px;
  }

  /* Remover margens laterais e alinhar à esquerda */
  .text-center.text-md-start {
    justify-content: space-between !important; /* Distribui espaço automaticamente entre os itens */
    margin-left: 0;
    margin-right: 0;
  }

  .grid-partidas-desktop {
    display: none !important;
  }
  .grid-partidas-mobile {
    display: block !important;
    /* margin-bottom: 10px; */
  }

  .logo-partida-grid {
    width: 1.2rem !important;
    height: 1.2rem;
  }

  .logo-partida {
    width: 4rem !important;
    height: 4rem;
  }
  .partidas {
    justify-content: space-between;
    align-items: center;
    border: solid 1px;
    border-color: #f3f4f8;
    margin: 0px -5px -40px 0px !important;
    font-size: 0.9rem;
    padding: 2px !important;
    border-radius: var(--border-radius);
    background-color: var(--bg-secondary, #fff);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .status {
    font-size: 0.8rem;
  }

  .liga-title-url {
    display: none !important;
  }

  .linha-torneio {
    margin-bottom: -40px !important;
    margin-top: 5px !important;
  }

  .pesquisa {
    margin-top: 1.5rem;
    margin-bottom: -1rem;
  }

  .pagination {
    margin-top: 2.5rem !important;
  }

  .aovivo {
    font-size: 0.6rem;
  }

  .ao-vivo-mobile {
    padding: 8px 12px !important;
  }

  .text-penalty-col1 {
    font-size: 0.7em;
    height: 2.9rem;
    display: flex;
    align-items: center;
    justify-content: end;
    width: 45% !important;
    text-align: end;
  }
  .text-penalty-col2 {
    font-size: 0.7em;
    height: 2.9rem;
    align-items: center;
    justify-content: center !important;
    width: 10% !important;
    display: flex;
  }
  .text-penalty-col3 {
    font-size: 0.7em;
    height: 2.9rem;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 45% !important;
    text-align: start;
  }

  .text-statistic-col1 {
    justify-content: flex-start !important;
    font-size: 0.8rem;
  }

  .text-statistic-col3 {
    justify-content: flex-end !important;
    font-size: 0.8rem;
  }

  .text-statistic-col2 {
    justify-content: center !important;
    font-size: 0.8rem;
  }

  .gols-penalty {
    font-size: 0.9rem;
  }
  .penalty {
    font-size: 2rem;
  }

  .gols-resultado {
    font-size: 2rem;
    padding: 0;
  }

  .gols {
    padding: 0px 7px !important;
  }

  #searchResults {
    margin-top: 20px;
    margin-bottom: -1.5rem;
    padding: 10px;
  }

  small {
    font-size: 0.6rem !important;
  }

  .resultado-partida {
    padding-top: 5px;
  }

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

  .text-event-col1 {
    font-size: 0.8rem;
    display: flex;
    align-items: flex-end;
    align-items: center !important;
    padding-right: 15px;
  }

  .text-event-col3 {
    font-size: 0.8rem;
    display: flex;
    align-items: flex-start;
    align-items: center !important;
    padding-left: 15px;
  }

  .tempo {
    font-size: 0.8rem;
    padding: 8px 6px !important;
  }
}

@media (min-width: 769px) and (max-width: 1380px) {
  .menu-toggle {
    display: none !important;
  }

  .mobile-menu {
    display: none !important;
    list-style: none;
  }

  .nome-liga {
    font-size: 0.8rem;
    font-weight: 300;
  }

  .ui-datepicker {
    top: 40% !important; /* Move um pouco para cima em telas menores */
  }
}

#tabela-de-jogos {
  margin-top: -1rem;
}

.logo-circle {
  width: 30px;
  height: 30px; /* Largura e altura iguais para garantir forma circular */
  overflow: hidden; /* Garante que nada vai além dos limites */
  border-radius: 50%; /* Transforma quadrado em círculo */
  display: flex; /* Para centralizar a imagem internamente */
  align-items: center; /* Centraliza verticalmente */
  justify-content: center; /* Centraliza horizontalmente */
}

.logo-liga-circle {
  width: 100%; 
  height: 100%;
  /* `object-fit` não é necessário aqui, 
     mas pode ser usado para manter proporções internas */
  object-fit: cover;
}