/* Cards de campionats */
.campionat-card {
  display: flex;
  align-items: stretch;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  width: 100%;
  max-width: 420px;
  min-width: 220px;
  margin: 0 auto;
  transition: box-shadow 0.2s;
  min-height: 120px;
}
.campionat-card:hover {
  box-shadow: 0 4px 16px rgba(241,117,1,0.10);
  border-color: var(--primary);
}
.campionat-year {
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  height: 120px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3c96b;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  border-right: 1px solid #e0e0e0;
}
.campionat-info {
  display: flex;
  align-items: center;
  padding: 0 18px;
  flex: 1 1 auto;
  cursor: pointer;
  min-width: 0;
}
.campionat-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #F17501;
  margin: 0;
  line-height: 1.3;
  word-break: break-word;
  white-space: normal;
}
.swiper-slide {
  display: flex;
  align-items: stretch;
  height: auto;
}
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--primary);
}
.swiper-pagination {
  margin-top: 18px;
  position: static !important;
  text-align: center;
}

/* Estilos específicos para DataTables - Solo página de resultados */
/* En desktop: resetear estilos globales */
.dataTable {
    font-size: inherit;
}
.dataTables_wrapper th,
.dataTables_wrapper td {
    padding: .5rem .5rem;
}

/* En móvil: aplicar estilos compactos */
@media (max-width: 767px) {
    .dataTable {
        font-size: 11px;
    }
    .dataTables_wrapper th,
    .dataTables_wrapper td {
        padding: 2px 4px;
    }
}