/* --- Tab Elements --- */
.tabs-container {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.tab-btn {
  background: white;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 8px 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  color: #222;
  transition: all 0.2s;
}
.tab-btn.active {
  background: #000;
  color: white;
}

/* --- Search Bar Components --- */
.search-wrapper {
  position: relative;
  max-width: 400px;
  margin-bottom: 20px;
}
.search-box {
  width: 100%;
  max-width: 100%;
  padding: 10px 15px;
  padding-right: 35px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}
.clear-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #999;
  cursor: pointer;
  display: none;
  user-select: none;
}
.clear-btn:hover {
  color: #000;
}

/* --- Shared Table Elements --- */
.group-card {
  background: white;
  border: 1px solid #000;
  border-radius: 4px;
  overflow: hidden;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 14px;
}
th {
  background: #000;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  padding: 12px 2px;
}
th.team-col {
  text-align: left;
  padding-left: 10px;
  width: 35%;
}
td {
  padding: 12px 2px;
  color: #000;
  border-bottom: 1px solid #eee;
}
td.team-col {
  text-align: left;
  padding-left: 10px;
  font-weight: bold;
}
tr:last-child td {
  border-bottom: none;
}
