.mwfw-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 8px 0 12px
}

.mwfw-controls label {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.mwfw-controls select,
.mwfw-controls input[type="date"],
.mwfw-controls input[type="text"] {
  background: var(--kc-light-black);
  border-radius: 4px;
  padding: 6px 8px;
  line-height: 1
}

/* Minimal, neutral pagination styling; easy to override */
.mwfw-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px
}

.mwfw-summary {
  font-size: 12px;
  padding: 10px;
  background-color: var(--kc-light-black);
  font-weight: 600;
  border-radius: 7px;
}

.mwfw-pagination {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-top: 0
}

.mwfw-page {
  font-size: 12px;
  padding: 10px;
  background-color: var(--kc-light-black);
  font-weight: 600;
  border-radius: 7px;
  cursor: pointer
}

.mwfw-page:hover {
  border-color: #c3c4c7
}

.mwfw-page.is-current {
  border-color: #2271b1;
  background: #f0f6fc;
  font-weight: 600
}

.mwfw-page.is-disabled {
  opacity: .5;
  cursor: not-allowed
}

.mwfw-dots {
  display: none
}

/* Custom tooltip for value cell */
.mwfw-tooltip {
  position: relative;
  display: inline-block
}

.mwfw-tooltip:focus {
  outline: none
}

.mwfw-tooltip::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, -6px);
  background: #1e1e1e;
  color: #fff;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.2;
  white-space: normal;
  max-width: 280px;
  min-width: 120px;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
  transition: opacity .15s ease, transform .15s ease;
  z-index: 1000
}

.mwfw-tooltip::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, 0);
  border: 6px solid transparent;
  border-top-color: #1e1e1e;
  margin-bottom: -1px;
  opacity: 0;
  transition: opacity .15s ease;
  z-index: 1000
}

.mwfw-tooltip:hover::after,
.mwfw-tooltip:focus::after,
.mwfw-tooltip:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, -10px)
}

.mwfw-tooltip:hover::before,
.mwfw-tooltip:focus::before,
.mwfw-tooltip:focus-visible::before {
  opacity: 1
}

/* .endpoint-title {
  display: none;
} */

.mwfw-tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 50px;
}

.mwfw-tabs button {
  flex: 1;
  padding: 10px;
  border-radius: 7px;
  border: 2px solid var(--kc-orange);
  text-transform: uppercase;
  font-size: 16px;
}

.mwfw-tab.is-active {
  background-color: var(--kc-orange);
  color: white;
}

.mwfw-my-wins th {
  text-align: left;
  text-transform: uppercase;
  font-size: 14px;
}

.mwfw-table {
  width: 100%;
}

.mwfw-table thead th {
  background-color: var(--kc-orange);
  padding: 10px;
  color: white;
  font-weight: 100;
}

.mwfw-table thead th:first-child,
.mwfw-table tbody td:first-child {
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}

.mwfw-table thead th:last-child,
.mwfw-table tbody td:last-child {
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}

.mwfw-table tbody tr {
  border-top: 10px solid white;
}

.mwfw-table tbody td {
  padding: 10px;
  background: var(--kc-light-black);
  font-size: 14px;

}

.mwfw-empty {
  background-color: var(--kc-light-black);
  border-radius: 7px;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
}