.efl-trophies-panel {
  background: #000;
  border-radius: 10px;
  padding: 20px;
  margin: 0;
  color: #f5f5f5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.efl-trophies-panel__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.efl-trophies-tab {
  flex: 0 0 auto;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 13px;
  background: #111;
  color: #fff;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,.15);
}

.efl-trophies-tab.efl-trophies-tab--active {
  background: #e44541;
  border: none;
}

.efl-trophies-tab-panel {
  display: none;
}

.efl-trophies-tab-panel--active {
  display: block;
}

.efl-trophies-form {
  background: #000;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.15);
}

.efl-field {
  margin-bottom: 12px;
}

.efl-field label {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}

.efl-field input,
.efl-field select {
  width: 100%;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.15);
  background: #111;
  color: #f5f5f5;
  font-size: 13px;
}

.efl-button {
  display: inline-block;
  border-radius: 5px;
  border: none;
  padding: 8px 18px;
  font-size: 13px;
  cursor: pointer;
  background: #e05a5a;
  color: #fff;
  font-weight: 700;
}

.efl-button[disabled] {
  opacity: 0.5;
  cursor: default;
}

.efl-trophies-admin .efl-trophies-card {
  background: #fff;
  padding: 16px;
  margin-top: 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.efl-trophies-filters-bar {
  margin-bottom: 8px;
}

.efl-trophies-filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}

.efl-filter-item {
  display: flex;
  flex-direction: column;
  min-width: 160px;
}

.efl-filter-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.efl-trophies-hall {
  background: #000;
  border-radius: 10px;
  padding: 20px;
  margin: 0;
  color: #f5f5f5;
  text-align: center;
}

.efl-trophies-hall__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  justify-content: center;
}

.efl-trophies-hall .efl-filter-item {
  flex: 1 1 200px;
  text-align: center;
}

.efl-trophies-hall .efl-filter-item label {
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 2px;
}

.efl-trophies-hall select {
  text-align-last: center;
}

.efl-trophies-hall select option {
  text-align: center;
}

.efl-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.efl-switch__label {
  font-size: 12px;
}

.efl-switch__track {
  position: relative;
  width: 44px;
  height: 22px;
  border-radius: 999px;
  background: #333;
}

.efl-switch__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e44541;
}

.efl-switch--disabled .efl-switch__track {
  opacity: .6;
}


/* Glory Hall – poprawki wyglądu */
.efl-trophies-hall__item-title {
  font-size: 18px;
  font-weight: bold;
  color: #e44541;
  margin-bottom: 4px;
}

.efl-trophies-hall__item-date {
  font-size: 12px;
  color: #fff;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 6px;
}

.efl-trophies-hall__actions {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.efl-button.efl-button--filter {
  width: 100%;
  background: #e44541;
  border-radius: 5px;
}

.efl-trophies-hall__actions--reset {
  margin-top: 4px;
}

.efl-button.efl-button--reset {
  width: 100%;
  background: #111;
  color: #fff;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Paginacja */
.efl-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.efl-page-btn {
    border: 0;
    padding: 6px 10px;
    border-radius: 4px;
    background: #2b2b2b;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    text-decoration: none;
}

.efl-page-btn.is-active {
    background: #e44541;
    font-weight: bold;
}

.efl-page-btn[aria-disabled="true"] {
    opacity: 0.5;
    cursor: default;
}


.efl-trophies-hall__grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
}

@media (min-width: 900px) {
  .efl-trophies-hall__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.efl-trophies-hall__item {
  background: #111;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}


.efl-trophies-hall__item-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}

.efl-trophies-hall__item-league-chip {
  font-size: 12px;
  color: #fff;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 5px;
  background: #e44541;
  margin-bottom: 6px;
}

.efl-trophies-hall a {
  color: #ffffff !important;
}


.efl-button--primary {
  background: #e44541;
}

.efl-button--wide {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 12px auto 0;
  text-align: center;
}

.efl-trophies-form .efl-field label {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 4px;
}

.efl-trophies-form .efl-field input,
.efl-trophies-form .efl-field select {
  display: block;
  margin: 0 auto 10px;
  text-align: center;
}

.efl-trophies-form .efl-field select {
  text-align-last: center;
}

.efl-trophies-panel__message {
  text-align: center;
  margin-bottom: 12px;
  padding: 8px 10px;
  border-radius: 4px;
  background: rgba(228,69,65,0.1);
}


.efl-button--upload {
  background: #111;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 5px;
}

.efl-button--upload:hover {
  background: #e44541;
  color: #fff;
}

.efl-trophies-upload__hint {
  text-align: center;
}
