/* f3-standards.css */

.f3-standards-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.f3-standards-card {
  width: 100%;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(173, 19, 40, 0.10);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(235, 235, 235, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.f3-standards-filters {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .f3-standards-filters {
    flex-direction: row;
    align-items: center;
  }
}

.f3-standards-search {
  position: relative;
  flex: 1;
}

.f3-standards-search input {
  width: 100%;
  padding: 10px 12px;
  padding-left: 40px;
  border-radius: 10px;
  border: 1px solid rgba(235, 235, 235, 0.10);
  background: rgba(255, 255, 255, 0.10);
  color: #EBEBEB;
  outline: none;
}

.f3-standards-search input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.f3-standards-search input::placeholder {
  color: rgba(235, 235, 235, 0.6);
}

.f3-standards-search-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: rgba(235, 235, 235, 0.6);
  font-size: 16px;
  user-select: none;
}

.f3-standards-select {
  width: 100%;
}

@media (min-width: 640px) {
  .f3-standards-select {
    width: auto;
    min-width: 220px;
  }
}

.f3-standards-select select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(235, 235, 235, 0.10);
  background: rgba(255, 255, 255, 0.10);
  color: #EBEBEB;
  outline: none;
}

.f3-standards-select select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.f3-standards-table-wrap {
  overflow-x: auto;
  margin: 0 -16px;
  padding: 0 16px;
}

.f3-standards-table {
  width: 100%;
  min-width: 800px;
  border-collapse: separate;
  border-spacing: 0;
}

.f3-standards-table th {
  padding: 12px;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
}

.f3-standards-table th span {
  font-size: 12px;
  font-weight: 700;
  color: #EBEBEB;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.f3-standards-table td {
  padding: 10px 12px;
  border-top: 1px solid rgba(235, 235, 235, 0.05);
}

.f3-standards-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.f3-standards-row:hover {
  background: rgba(255, 255, 255, 0.08);
}

.f3-movement {
  font-weight: 600;
  color: #EBEBEB;
}

.f3-cell {
  text-align: center;
}

.f3-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 92px;
}

.f3-cell:hover .f3-pill {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.f3-level-3 {
  background: #dcfce7;
  color: #166534;
}

.f3-level-2 {
  background: #dbeafe;
  color: #1e40af;
}

.f3-level-1 {
  background: #fee2e2;
  color: #991b1b;
}

.f3-level-none {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(235, 235, 235, 0.6);
}