/* pos-match.css */

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #f0f0f0;
  background: linear-gradient(to bottom, #0a0a0a 0%, rgb(20, 20, 20) 100%) !important;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#app,
.pre-match-container,
.pos-match-container,
.main-content {
  background: transparent !important;
  position: relative;
  z-index: 1;
}

#app,
.pre-match-container {
  min-height: calc(100vh - 200px);
}

footer,
.footer,
.site-footer {
  background: transparent !important;
}

/* Layout principal */
.pre-match-container {
  width: 90%;
  max-width: 1240px;
  min-height: calc(100vh - 200px);
  margin: 120px auto 40px;
  padding: 30px;
  background: transparent;
  border-radius: 14px;
  position: relative;
  z-index: 1;
}

/* ============================================= */
/* Cabeçalho – exatamente igual ao pré-match     */
/* ============================================= */
.pos-match-page .match-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 48px 64px;
  margin-bottom: 40px;
  gap: 40px;
  color: #fff;
  position: relative;
  z-index: 0;
}

.pos-match-page .team-link {
  flex: 1;                     /* faz com que os dois times ocupem espaços iguais */
  display: block;
  text-decoration: none;
  color: inherit;
}

.pos-match-page .team {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;                /* permite que o conteúdo encolha se necessário */
  text-align: center;
}

.pos-match-page .team-logo {
  min-height: 72px;
  min-width: 72px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 0;            /* sem bordas arredondadas, igual ao pré-match */
  padding: 8px;

}

.pos-match-page .team-name {
  margin: 10px 0 0;
  font-weight: 650;
  font-size: clamp(0.95rem, 1.25vw, 1.35rem);
  line-height: 1.15;
  max-width: 18ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hover / focus acessível */
.pos-match-page .team-link:hover .team-name,
.pos-match-page .team-link:focus-visible .team-name {
  color: #1a73e8;
}



/* Ajuste fino para mobile (igual ao pré-match) */
@media (max-width: 520px) {
  .pos-match-page .team-logo {
    width: 52px;
    height: 52px;
    padding: 6px;
  }
  .pos-match-page .team-name {
    max-width: 14ch;
  }
}

/* ============================================= */
/* Restante do cabeçalho (liga, vs, detalhes)    */
/* ============================================= */
.match-center {
  display: flex;
  flex: 2;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1rem;
}

.league-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.league-logo {
  height: 40px;
  width: auto;
}

.league-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ddd;
  text-align: center;
}

.vs {
  margin: 0.5rem 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.match-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.match-datetime,
.match-venue {
  font-size: 0.95rem;
  color: #ccc;
  text-align: center;
}

/* ============================================= */
/* Eventos, abas, estatísticas (inalterados)     */
/* ============================================= */
.eventos-container {
  padding: 25px;
  margin: 20px 0;
}

.eventos-titulo {
  margin: 0 0 12px;
  padding-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #444;
}

.eventos-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.eventos-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
  z-index: 1;
}

.tempo-titulo {
  width: 100px;
  margin: 1.5rem 0 0.5rem;
  padding-bottom: 0.3rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  color: #aaa;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  grid-column: 1 / span 2;
}

.evento-item {
  display: flex;
  align-items: center;
  width: 45%;
  padding: 3px 0;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.evento-casa {
  margin-right: auto;
  justify-content: flex-end;
  text-align: right;
  padding-right: 15px;
}

.evento-fora {
  margin-left: auto;
  justify-content: flex-start;
  text-align: left;
  padding-left: 15px;
}

.evento-conteudo {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border: none;
}

.evento-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  font-size: 1rem;
}

.evento-minuto {
  min-width: 22px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #aaa;
  text-align: center;
}

.evento-descricao {
  font-size: 0.8rem;
  line-height: 1.25;
  font-weight: 500;
  color: #ddd;
}

.sem-eventos {
  padding: 2rem;
  font-style: italic;
  text-align: center;
  color: #aaa;
  grid-column: 1 / span 2;
}

/* Ícones especiais */
.res-sub-svg {
  width: 100%;
  height: 100%;
}

.res-sub-circle {
  fill: none;
  stroke: #3b3f46;
  stroke-width: 1.2;
}

.res-sub-arrow {
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.res-sub-arrow-in {
  stroke: #22c55e;
}

.res-sub-arrow-out {
  stroke: #ef4444;
}

.evento-emoji.icon-goal-disallowed {
  position: relative;
}

.evento-emoji.icon-goal-disallowed .gd-x {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 700;
  color: #ef4444 !important;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.85);
  pointer-events: none;
}

/* Abas principais */
.nav-abas {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.5rem;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.btn-aba {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 84px;
  height: 38.5px;
  padding: 6px 12px;
  margin-left: 5px;
  box-sizing: border-box;
  background-color: transparent !important;
  border: 1.25px solid #1a73e8 !important;
  border-radius: 6px !important;
  color: #1a73e8 !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  cursor: pointer;
  box-shadow: none !important;
  text-shadow: none !important;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

.btn-aba:not(.active):hover {
  background-color: rgba(26, 115, 232, 0.08) !important;
  border-color: #1a73e8 !important;
  color: #1a73e8 !important;
}

.btn-aba.active {
  background-color: #1a73e8 !important;
  border-color: #1a73e8 !important;
  color: #fff !important;
}

.btn-aba.active:hover {
  background-color: #0b5ed7 !important;
  border-color: #0a58ca !important;
  color: #fff !important;
}

.btn-aba i.bi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  min-width: 16px;
  font-size: 12px;
  line-height: 1;
  color: #cfe3ff;
  border-radius: 4px;
  background: rgba(22, 119, 255, 0.18);
  border: 1px solid rgba(22, 119, 255, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.btn-aba:not(.active):hover i.bi {
  background: rgba(22, 119, 255, 0.24);
  border-color: rgba(22, 119, 255, 0.55);
  color: #e8f0ff;
}

.btn-aba.active i.bi {
  background: linear-gradient(180deg, #2a6ff3 0%, #1a73e8 100%);
  border-color: #2a6ff3;
  color: #fff;
}

.btn-aba:focus {
  outline: none !important;
  box-shadow: none !important;
}

.btn-aba:focus-visible {
  outline: 2px solid #1a73e8 !important;
  outline-offset: 2px !important;
}

/* Conteúdo das abas */
.conteudo-aba {
  display: none;
  min-height: 400px;
  margin: 20px 0;
  padding: 25px;
  background: rgba(30, 30, 30, 0.95) !important;
  border-radius: 14px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.conteudo-aba:not(.d-none),
.conteudo-aba.ativo {
  display: block;
}

.conteudo-aba.escondido {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.conteudo-aba.ativo {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  visibility: visible;
  height: auto;
}

.conteudo-aba.d-none,
.hidden {
  display: none !important;
}

/* Estatísticas */
.estatisticas-container {
  margin: 1rem 0;
}

.estatisticas-titulo {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.estatisticas-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.estatisticas-tab {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #444;
  border-radius: 6px;
  color: #ccc;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
}

.estatisticas-tab:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.estatisticas-tab.active {
  background: #1a73e8;
  border-color: #1a73e8;
  color: #fff;
}

.estatisticas-content {
  display: none;
}

.estatisticas-content.active {
  display: block;
}

.estatistica-barra-container {
  width: 80%;
  margin: 0 auto 1.5rem;
}

.estatistica-nome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 2px;
  font-size: 0.95rem;
  color: #ccc;
}

.valor-casa,
.valor-fora {
  margin: 0 5px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.estatistica-barra-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 12px;
}

.estatistica-barra-background {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.barra-casa {
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #1a73e8, #4dabf5);
  border-radius: 8px 0 0 8px;
  box-shadow: 0 2px 4px rgba(26, 115, 232, 0.3);
  transition: width 0.5s ease;
}

.barra-fora {
  position: absolute;
  right: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #dc3545, #e35d6a);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
  transition: width 0.5s ease;
}

/* Loading e utilitários */
.carregando-conteudo {
  position: relative;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.carregando-conteudo .spinner-border {
  width: 2rem;
  height: 2rem;
  border-width: 0.2em;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.spinner-border {
  animation: spin 0.75s linear infinite;
}

.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading-opacity {
  opacity: 0.7 !important;
}

.hidden-opacity {
  opacity: 0 !important;
}

.fade-in {
  opacity: 1 !important;
  transition: opacity 0.3s ease-in-out;
}

/* Compatibilidade visual */
.conteudo-aba .card,
.conteudo-aba .card-body {
  background-color: rgba(40, 40, 40, 0.95) !important;
  color: #f0f0f0 !important;
  border-color: #444 !important;
}

.conteudo-aba .card {
  transition: transform 0.2s ease-in-out;
}

.conteudo-aba .card:hover {
  transform: translateY(-2px);
}

.conteudo-aba .text-muted,
.pre-match-container .text-muted {
  color: #aaa !important;
}

.conteudo-aba .alert {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #f0f0f0 !important;
  border-color: #555 !important;
}

.pre-match-container .container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.pre-match-container .btn {
  padding: 0.5rem 1rem;
}

/* POS-MATCH v2 */
.pos-match-page {
  --pm-gap: 18px;
  --pm-surface: rgba(24, 24, 24, 0.86);
  --pm-border: rgba(255, 255, 255, 0.09);
  --pm-border-strong: rgba(255, 255, 255, 0.14);
  --pm-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  --pm-radius: 0;
  --pm-radius-lg: 0;
  --pm-pad: 18px;
}

.pos-match-page,
.pos-match-page *,
.pos-match-page *::before,
.pos-match-page *::after {
  border-radius: 0 !important;
}

.pos-match-page.pre-match-container {
  padding: 22px !important;
}

.pos-match-page .posmatch-layout {
  display: grid;
  gap: var(--pm-gap);
  align-items: start;
}

.pos-match-page .eventos-container,
.pos-match-page .posmatch-tabs {
  margin: 0 !important;
  padding: var(--pm-pad) !important;
}

.pos-match-page .eventos-container.mb-4,
.pos-match-page .nav-abas.mb-3 {
  margin-bottom: 0 !important;
}

.pos-match-page .posmatch-tabs .nav-abas {
  margin: 0 0 14px !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.pos-match-page .posmatch-tabs .conteudo-aba {
  min-height: unset !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.pos-match-page .estatisticas-container {
  margin: 0 !important;
}

.pos-match-page .estatisticas-titulo {
  margin: 0 0 10px !important;
  text-align: left !important;
  font-size: 1.15rem !important;
  letter-spacing: 0.2px;
}

.pos-match-page .estatisticas-tabs {
  justify-content: flex-start !important;
  flex-wrap: wrap;
  gap: 8px !important;
  margin: 0 0 14px !important;
}

.pos-match-page .estatisticas-tab {
  padding: 8px 12px !important;
  font-size: 0.9rem !important;
  border: 1px solid var(--pm-border) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.pos-match-page .estatisticas-tab:hover {
  background: rgba(255, 255, 255, 0.08) !important;
}

.pos-match-page .estatisticas-tab.active {
  background: #1a73e8 !important;
  border-color: rgba(26, 115, 232, 0.9) !important;
}

.pos-match-page .estatistica-barra-container {
  width: 100% !important;
  margin: 0 0 14px !important;
}

.pos-match-page .estatistica-nome {
  display: grid !important;
  grid-template-columns: minmax(44px, 72px) 1fr minmax(44px, 72px);
  gap: 10px;
  align-items: center;
  margin-bottom: 6px !important;
  padding-bottom: 0 !important;
  font-size: 0.92rem !important;
}

.pos-match-page .estatistica-nome span:nth-child(2) {
  text-align: center;
  color: #e8e8e8;
}

.pos-match-page .estatistica-barra-wrapper {
  height: 10px !important;
}

.pos-match-page .estatistica-barra-background {
  background: rgba(255, 255, 255, 0.08) !important;
  border-radius: 999px !important;
}

.pos-match-page .valor-casa,
.pos-match-page .valor-fora {
  margin: 0 !important;
}

.pos-match-page .valor-casa {
  justify-self: start;
}

.pos-match-page .valor-fora {
  justify-self: end;
  text-align: right;
}

.pos-match-page .stats-empty-alert {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  font-size: 0.95rem;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.pos-match-page .stats-empty-alert i {
  font-size: 1.1rem;
  opacity: 0.9;
}

@media (min-width: 769px) {
  .pos-match-page .match-header {
    margin-bottom: var(--pm-gap) !important;
    padding: 42px 52px !important;
  }
}

@media (min-width: 992px) {
  .pos-match-page .posmatch-layout {
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  }

  .pos-match-page .eventos-container {
    position: sticky;
    top: 92px;
    max-height: calc(100vh - 170px);
    overflow: auto;
    scrollbar-gutter: stable;
  }
}

/* Responsividade geral (já existente, mas ajustada para o cabeçalho) */
@media (max-width: 1024px) {
  .pre-match-container {
    width: 95% !important;
    padding: 25px;
    margin-top: 100px;
  }

  .pos-match-page .match-header {
    min-height: 200px;
    padding: 36px 40px;
    gap: 30px;
  }

  .vs {
    font-size: 2.2rem;
  }

  .league-logo {
    height: 36px;
  }

  .league-name {
    font-size: 1rem;
  }
}

@media (max-width: 991px) {
  .pos-match-page .posmatch-layout {
    grid-template-columns: 1fr;
  }

  .pos-match-page .eventos-container {
    position: relative;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 768px) {
  .pre-match-container {
    width: 98% !important;
    padding: 20px 15px;
    margin-top: 90px;
    margin-bottom: 20px;
  }

  .pos-match-page .match-header {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 20px 16px;
    gap: 12px;
  }

  .match-center {
    display: contents;
  }

  .league-info {
    order: -1;
    width: 100%;
    flex: 0 0 100%;
    gap: 6px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .league-logo {
    height: 28px;
  }

  .league-name {
    font-size: 0.85rem;
  }

  .pos-match-page .team-link {
    flex: 1;
    min-width: 100px;
    max-width: 35%;
    order: 1;
  }

  .pos-match-page .team-name {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .vs {
    order: 1;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 1.6rem;
  }

  .match-details {
    order: 2;
    width: 100%;
    flex: 0 0 100%;
    gap: 4px;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .match-datetime,
  .match-venue {
    font-size: 0.8rem;
  }

  .nav-abas {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .btn-aba {
    min-width: auto;
    height: 42px;
    margin: 0;
    padding: 0.75rem;
    font-size: 0.9rem;
    text-align: center;
    border-radius: 8px;
  }

  .btn-aba.active {
    background: #1a73e8 !important;
    color: #fff !important;
  }

  .evento-item {
    width: 48%;
    padding: 4px 0;
  }

  .evento-conteudo {
    padding: 4px 8px;
  }

  .estatisticas-tabs {
    flex-wrap: wrap;
  }

  .estatisticas-tab {
    flex: 1;
    min-width: 100px;
    min-height: 44px;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }

  .estatistica-barra-container {
    width: 95%;
  }

  .pre-match-container .text-muted {
    opacity: 0.9;
  }
}

@media (max-width: 480px) {
  .pre-match-container {
    padding: 15px 10px;
    margin-top: 80px;
    margin-bottom: 15px;
    border-radius: 12px;
  }

  .pos-match-page .match-header {
    padding: 18px 12px;
    gap: 10px;
    border-radius: 16px;
  }

  .pos-match-page .team-link {
    min-width: 90px;
    max-width: 45%;
  }

  .pos-match-page .team-name {
    font-size: 0.85rem;
  }

  .vs {
    font-size: 1.5rem;
  }

  .league-logo {
    height: 26px;
  }

  .league-name {
    font-size: 0.8rem;
  }

  .btn-aba {
    height: 44px;
    padding: 0.7rem 0.5rem;
    font-size: 0.85rem;
  }

  .eventos-titulo {
    font-size: 1.1rem;
  }

  .tempo-titulo {
    width: 80px;
    font-size: 0.8rem;
  }

  .evento-item {
    width: 48%;
    padding: 4px 0;
  }

  .evento-conteudo {
    gap: 4px;
    padding: 3px 6px;
  }

  .evento-emoji {
    font-size: 0.9rem;
  }

  .evento-minuto {
    font-size: 0.75rem;
  }

  .evento-descricao {
    font-size: 0.8rem;
  }

  .estatisticas-tabs {
    flex-direction: column;
  }

  .estatisticas-tab {
    width: 100%;
  }

  .estatistica-barra-container {
    width: 100%;
  }

  .estatistica-nome {
    font-size: 0.85rem;
  }

  .pos-match-page.pre-match-container {
    padding: 16px !important;
  }

  .pos-match-page .eventos-container,
  .pos-match-page .posmatch-tabs {
    padding: 14px !important;
  }

  .pos-match-page .estatisticas-titulo {
    font-size: 1.05rem !important;
  }
}

@media (max-width: 360px) {
  .pre-match-container {
    padding: 12px 8px;
    margin-top: 70px;
  }

  .pos-match-page .match-header {
    padding: 16px 10px;
    gap: 8px;
  }

  .pos-match-page .team-link {
    min-width: 80px;
  }

  .pos-match-page .team-name {
    font-size: 0.8rem;
  }

  .league-logo {
    height: 24px;
  }

  .league-name {
    font-size: 0.75rem;
  }

  .vs {
    font-size: 1.4rem;
  }

  .btn-aba {
    height: 40px;
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .evento-descricao {
    font-size: 0.75rem;
  }

  .estatistica-nome {
    font-size: 0.8rem;
  }
}

@media (max-height: 500px) and (max-width: 900px) {
  .pre-match-container {
    margin-top: 70px;
    padding: 15px 10px;
  }

  .nav-abas {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .btn-aba {
    flex: 1;
    min-width: 120px;
    padding: 0.5rem;
  }
}