/* CONTAINER */
.sfbc-container {
  max-width: 920px;
  margin: auto;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  padding: 10px;
}

/* TABS */
.sfbc-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.sfbc-tab {
  padding: 10px 20px;
  border-radius: 999px;
  background: #e5e7eb;
  cursor: pointer;
  font-weight: 600;
  color: #475569;
  transition: all 0.2s ease;
}

.sfbc-tab:hover {
  background: #dbeafe;
}

.sfbc-tab.active {
  background: #0b2b55;
  color: white;
  box-shadow: 0 4px 12px rgba(11,43,85,0.3);
}

/* DATE PICKER */
.sfbc-date-picker input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  font-weight: 600;
  color: #1e293b;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

.sfbc-date-picker input:focus {
  outline: none;
  border-color: #0b2b55;
  box-shadow: 0 0 0 3px rgba(11,43,85,0.15);
}

/* CALENDAR */
.sfbc-calendar {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 0;
  margin: 10px 0 25px;
}

.sfbc-day {
  min-width: 70px;
  padding: 12px;
  border-radius: 14px;
  background: #f1f5f9;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #334155;
  font-weight: 600;
}

.sfbc-day small {
  display: block;
  font-size: 11px;
  color: #64748b;
}

.sfbc-day:hover {
  background: #e0f2fe;
  transform: translateY(-2px);
}

.sfbc-day.active {
  background: #f4c542;
  color: #1c1c1c;
  box-shadow: 0 6px 16px rgba(244,197,66,0.4);
}

/* CARD */
.sfbc-card {
  background: white;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: 0.25s;
}

.sfbc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

/* MAIN ROW */
.sfbc-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* TEAM */
.sfbc-team-block {
  text-align: center;
  min-width: 140px;
}

.sfbc-team-block img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #f8fafc;
  padding: 6px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  margin-bottom: 6px;
}

.sfbc-team-block div {
  font-weight: 700;
  font-size: 13px;
  color: #1e293b;
}

/* CENTER */
.sfbc-center {
  text-align: center;
}

.sfbc-score-big {
  font-size: 40px;
  font-weight: 800;
  color: #0b2b55;
  letter-spacing: 2px;
}

.sfbc-status {
  margin-top: 6px;
  font-size: 12px;
  background: #e2e8f0;
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-block;
  color: #334155;
  font-weight: 600;
}

/* FOOTER */
.sfbc-footer {
  text-align: center;
  margin-top: 12px;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
}

/* EMPTY */
.sfbc-empty {
  text-align: center;
  color: #94a3b8;
  padding: 20px;
}
.sfbc-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.sfbc-filters select {
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  background: #f1f5f9;
  font-weight: 600;
  cursor: pointer;
}