/* =====================================
   Tippspiel – Table Mobile Component
   ===================================== */
.tabmobile {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.tabmobile .ts-table-card {
  width: 100%;
  max-width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}

.tabmobile .ts-table-card__stats,
.tabmobile .ts-table-card__wuv {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tabmobile .team-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 20px;
}

.tabmobile .ts-table-mobile {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Top */
.tabmobile .ts-table-card__top {
  display: grid;
  align-items: center;
  gap: 10px;
  grid-template-columns: 34px minmax(0, 1fr) auto;
}

.tabmobile .ts-table-card__rank {
  font-weight: bold;
  min-width: 40px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tabmobile .ts-table-card__team {
  flex: 1;
}

.tabmobile .ts-table-card__trend {
  font-size: 0.8rem;
}

/* Punkte */
.tabmobile .ts-table-card__points {
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 8px;
}

/* Stats */
.tabmobile .ts-table-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 10px;
}

.tabmobile .ts-table-card__stats span {
  background: rgba(0,0,0,0.03);
  border-radius: 8px;
  padding: 6px;
  text-align: center;
  font-size: 0.75rem;
}

/* W/U/V */
.tabmobile .ts-table-card__wuv {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 6px;
}

.tabmobile .team-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.tabmobile .team-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.95rem;
  font-weight: 600;
}

.tabmobile .ts-table-card__wuv span {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 6px;
  text-align: center;
  font-size: 0.75rem;
}

.tabmobile .ts-table-card__rank span {
  font-size: 1.2rem;
  font-weight: 700;
}

.tabmobile .ts-table-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: transparent;
}

.tabmobile,
.tabmobile *,
.tabmobile *::before,
.tabmobile *::after {
  box-sizing: border-box;
}

.ts-card-info {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Slots */
.tabmobile .ts-table-card.ucl::before { background: #1e90ff; }
.tabmobile .ts-table-card.uel::before { background: #ff8c00; }
.tabmobile .ts-table-card.uecl::before { background: #8a2be2; }
.tabmobile .ts-table-card.relpo::before { background: #f4c542; }
.tabmobile .ts-table-card.rel::before { background: #e74c3c; }