/* ============================================================
   Recruit.Football — Admin Panel (rf-admin.css)
   Loaded only on /internal/. Depends on rf-dashboard.css for
   CSS variables (--rf-navy, --rf-accent, --rf-off, --rf-muted, etc.).
   Font: system-ui stack (intentional — utility aesthetic).
   ============================================================ */

/* ── Layout ───────────────────────────────────────────────────────────────── */

.rf-admin-main {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 13px;
  padding: 24px 28px;
  color: var(--rf-off);
  overflow-x: auto;
}

/* ── Tab switcher ─────────────────────────────────────────────────────────── */

.rf-admin-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 0;
}

.rf-admin-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rf-muted);
  cursor: pointer;
  transition: color .15s, border-color .15s;
  margin-bottom: -1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rf-admin-tab.active { color: var(--rf-accent); border-bottom-color: var(--rf-accent); }
.rf-admin-tab:not(.active):hover { color: var(--rf-off); }

.rf-admin-tab-count {
  font-size: 10px;
  font-weight: 700;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1px 6px;
  color: var(--rf-muted);
}
.rf-admin-tab.active .rf-admin-tab-count {
  background: rgba(43,143,255,0.15);
  color: var(--rf-accent);
}

/* ── Page header ──────────────────────────────────────────────────────────── */

.rf-admin-page-header {
  margin-bottom: 16px;
}

.rf-admin-page-header h1 {
  font-size: 18px;
  font-weight: 600;
  color: var(--rf-white);
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.rf-admin-total {
  font-size: 12px;
  font-weight: 500;
  color: var(--rf-muted);
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 1px 8px;
}

/* ── Filter bar ───────────────────────────────────────────────────────────── */

.rf-admin-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: nowrap;
  align-items: center;
  overflow-x: auto;
}

.rf-admin-filters input[type="search"],
.rf-admin-filters select {
  background: var(--rf-navy3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--rf-off);
  font-family: inherit;
  font-size: 12px;
  padding: 6px 10px;
  outline: none;
  transition: border-color .15s;
  -webkit-appearance: none;
  appearance: none;
}

.rf-admin-filters input[type="search"] {
  width: 220px;
}

.rf-admin-filters input[type="search"]:focus,
.rf-admin-filters select:focus {
  border-color: var(--rf-accent);
}

.rf-admin-filters select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7fa0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  cursor: pointer;
}

/* ── Master table ─────────────────────────────────────────────────────────── */

.rf-admin-table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 6px;
}

.rf-admin-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
  font-size: 13px;
  min-width: 1020px;
}

.rf-admin-table thead {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--rf-navy2);
}

.rf-admin-table th,
.rf-admin-table td {
  border: none;
}

.rf-admin-table th {
  text-align: left;
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rf-muted);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
  user-select: none;
}

.rf-admin-table th.sortable {
  cursor: pointer;
}

.rf-admin-table th.sortable:hover {
  color: var(--rf-off);
}

.rf-admin-table th.sort-active {
  color: var(--rf-accent);
}

.rf-admin-table th .sort-arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 10px;
  opacity: 0.7;
}

.rf-admin-table td {
  padding: 10px 14px;
  vertical-align: middle;
  white-space: nowrap;
  color: var(--rf-off);
}

.rf-admin-table tbody tr:hover td {
  background: rgba(255,255,255,0.025);
}

/* ── Athlete cell ─────────────────────────────────────────────────────────── */

.rf-admin-athlete-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rf-admin-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(43,143,255,0.15);
  border: 1px solid rgba(43,143,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--rf-accent);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.rf-admin-name {
  font-weight: 600;
  color: var(--rf-white);
  line-height: 1.2;
  font-size: 13px;
}

.rf-admin-email {
  font-size: 11px;
  color: var(--rf-muted);
  margin-top: 1px;
}

/* ── Position / year cell ─────────────────────────────────────────────────── */

.rf-admin-pos-badge {
  display: inline-block;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  padding: 1px 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--rf-off);
  margin-right: 4px;
}

.rf-admin-year {
  font-size: 12px;
  color: var(--rf-muted);
}

/* -- Tier select (inline badge-style) -------------------------------------- */

.rf-tier-select {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  padding: 3px 8px;
  border-radius: 12px;
  transition: opacity .15s;
}

.rf-tier-select:hover {
  opacity: 0.85;
}

.rf-tier-select option {
  background: var(--rf-navy3);
  color: var(--rf-off);
  font-weight: 600;
}

.rf-tier-select.free       { color: #a4b8d0; background: rgba(107,127,160,0.14); }
.rf-tier-select.prospect   { color: #4da9ff; background: rgba(77,169,255,0.14); }
.rf-tier-select.premier    { color: #74b5ff; background: rgba(116,181,255,0.14); }
.rf-tier-select.playmaker  { color: #2db87a; background: rgba(45,184,122,0.14); }
.rf-tier-select.all_access { color: #2b8fff; background: rgba(43,143,255,0.18); }

/* ── Verified toggle ──────────────────────────────────────────────────────── */

.rf-toggle {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 18px;
  cursor: pointer;
}

.rf-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.rf-toggle-track {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 9px;
  transition: background .2s;
}

.rf-toggle-track::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  left: 2px;
  top: 2px;
  background: var(--rf-muted);
  border-radius: 50%;
  transition: transform .2s, background .2s;
}

.rf-toggle input:checked + .rf-toggle-track {
  background: rgba(43,143,255,0.25);
}

.rf-toggle input:checked + .rf-toggle-track::before {
  transform: translateX(14px);
  background: var(--rf-accent);
}

/* ── Completeness cell ────────────────────────────────────────────────────── */

.rf-admin-complete-cell {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.rf-admin-progress {
  width: 56px;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.rf-admin-progress-fill {
  height: 100%;
  background: var(--rf-accent);
  border-radius: 2px;
}

/* ── Numeric cells ────────────────────────────────────────────────────────── */

.rf-admin-table td:nth-child(8),
.rf-admin-table td:nth-child(9) {
  font-variant-numeric: tabular-nums;
  color: var(--rf-muted);
}

.rf-admin-table td:nth-child(8).has-data,
.rf-admin-table td:nth-child(9).has-data {
  color: var(--rf-off);
}

/* ── Actions cell ─────────────────────────────────────────────────────────── */

.rf-admin-actions {
  display:     flex;
  gap:         6px;
  flex-wrap:   wrap;
  align-items: center;
}

.rf-admin-action-btn {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: var(--rf-muted);
  transition: border-color .15s, color .15s, background .15s;
  white-space: nowrap;
}

.rf-admin-action-btn:hover {
  border-color: rgba(255,255,255,0.28) !important;
  color: var(--rf-off) !important;
}

.rf-admin-action-btn.gold {
  border-color: rgba(43,143,255,0.4);
  color: var(--rf-accent);
}

.rf-admin-action-btn.gold:hover {
  background: rgba(43,143,255,0.1) !important;
  border-color: var(--rf-accent) !important;
  color: var(--rf-accent) !important;
}

/* ── Reset PW button states ───────────────────────────────────────────────── */

.rf-reset-pw-btn.sending { opacity: 0.5; cursor: default; pointer-events: none; }
.rf-reset-pw-btn.sent    { border-color: rgba(45,184,122,0.4); color: var(--rf-success); }
.rf-reset-pw-btn.sent:hover {
  background:   rgba(45,184,122,0.08) !important;
  border-color: var(--rf-success) !important;
  color:        var(--rf-success) !important;
}
.rf-reset-pw-btn.error   { border-color: rgba(232,80,64,0.4); color: #e85040; }

/* ── Empty / loading states ───────────────────────────────────────────────── */

.rf-admin-empty {
  text-align: center;
  padding: 40px 14px;
  color: var(--rf-muted);
}

.rf-admin-table-loading td {
  padding: 40px;
  text-align: center;
  color: var(--rf-muted);
}

/* ── Pagination ───────────────────────────────────────────────────────────── */

.rf-admin-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 2px;
  font-size: 12px;
  color: var(--rf-muted);
}

.rf-admin-page-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rf-admin-page-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--rf-off);
  min-width: 20px;
  text-align: center;
}

.rf-admin-page-btns button {
  background: var(--rf-navy3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--rf-off);
  font-family: inherit;
  font-size: 12px;
  padding: 5px 14px;
  cursor: pointer;
  transition: border-color .15s, color .15s;
}

.rf-admin-page-btns button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.rf-admin-page-btns button:not(:disabled):hover {
  border-color: var(--rf-accent);
  color: var(--rf-accent);
}

/* ── Slide-out drawer ─────────────────────────────────────────────────────── */

.rf-admin-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 480px;
  max-width: 100vw;
  height: 100vh;
  background: var(--rf-navy2);
  border-left: 1px solid rgba(255,255,255,0.08);
  transform: translateX(100%);
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.rf-admin-drawer.open {
  transform: translateX(0);
}

.rf-admin-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1000;
}

.rf-admin-drawer-overlay.visible {
  display: block;
}

.rf-admin-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  font-weight: 600;
  color: var(--rf-white);
  flex-shrink: 0;
  gap: 12px;
}

.rf-admin-drawer-header span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rf-admin-drawer-close {
  background: none;
  border: none;
  color: var(--rf-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  flex-shrink: 0;
  line-height: 0;
  transition: color .15s;
}

.rf-admin-drawer-close:hover {
  color: var(--rf-off);
}

.rf-admin-drawer-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.rf-drawer-tab {
  flex: 1;
  padding: 10px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rf-muted);
  cursor: pointer;
  transition: color .15s, border-color .15s;
}

.rf-drawer-tab.active {
  color: var(--rf-accent);
  border-bottom-color: var(--rf-accent);
}

.rf-drawer-tab:hover:not(.active) {
  color: var(--rf-off);
}

.rf-admin-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  font-size: 13px;
}

.rf-admin-drawer-loading {
  text-align: center;
  padding: 40px 20px;
  color: var(--rf-muted);
}

/* ── Drawer row content ───────────────────────────────────────────────────── */

.rf-drawer-row {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rf-drawer-row:last-child {
  border-bottom: none;
}

.rf-drawer-row-title {
  font-weight: 600;
  color: var(--rf-white);
  font-size: 13px;
}

.rf-drawer-row-meta {
  font-size: 11px;
  color: var(--rf-muted);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.rf-drawer-row-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.rf-drawer-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1px 6px;
  border-radius: 10px;
  background: rgba(43,143,255,0.14);
  color: var(--rf-accent);
}

.rf-drawer-badge.opened {
  background: rgba(45,184,122,0.14);
  color: #2db87a;
}

.rf-drawer-badge.not-opened {
  background: rgba(107,127,160,0.14);
  color: var(--rf-muted);
}

/* Platform badges in activity drawer */
.rf-drawer-badge.platform-email  { background: rgba(43,143,255,0.10);    color: #2b8fff; }
.rf-drawer-badge.platform-phone  { background: rgba(122,179,232,0.10);   color: #7ab3e8; }
.rf-drawer-badge.platform-x      { background: rgba(255,255,255,0.07);   color: #e8e4db; }
.rf-drawer-badge.platform-manual { background: rgba(107,127,160,0.10);   color: #a4b8d0; }

.rf-drawer-badge.offer {
  background: rgba(77,169,255,0.14);
  color: #4da9ff;
}

.rf-drawer-badge.committed {
  background: rgba(45,184,122,0.14);
  color: #2db87a;
}

.rf-drawer-starred {
  color: var(--rf-accent);
  font-size: 12px;
}

.rf-drawer-empty {
  text-align: center;
  padding: 32px 0;
  color: var(--rf-muted);
  font-size: 13px;
}

/* Activity drawer rows with logo avatar */
.rf-drawer-row--activity {
  flex-direction: row;
  align-items: flex-start;
  gap: 9px;
}
.rf-drawer-row-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rf-drawer-activity-logo {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 1px;
}
.rf-drawer-activity-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
}
.rf-drawer-activity-logo--initials {
  font-size: 9px;
  font-weight: 700;
  color: var(--rf-muted);
  letter-spacing: 0.03em;
}
.rf-drawer-activity-logo--fallback::after {
  content: attr(data-initials);
  font-size: 9px;
  font-weight: 700;
  color: var(--rf-muted);
  letter-spacing: 0.03em;
}

/* Platform filter tabs inside drawer activity tab */
.rf-drawer-platform-tabs {
  display:       flex;
  gap:           5px;
  margin-bottom: 14px;
  flex-wrap:     wrap;
}
.rf-drawer-platform-tab {
  padding:        4px 12px;
  border-radius:  14px;
  font-size:      11px;
  font-weight:    600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background:     rgba(255,255,255,0.04);
  border:         1px solid rgba(255,255,255,0.08);
  color:          var(--rf-muted);
  cursor:         pointer;
  transition:     background .15s, color .15s, border-color .15s;
}
.rf-drawer-platform-tab:hover {
  color:        var(--rf-off);
  background:   rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.rf-drawer-platform-tab.active {
  color:        var(--rf-accent);
  background:   rgba(43,143,255,0.12);
  border-color: rgba(43,143,255,0.35);
}

/* Activity school filter input */
.rf-drawer-activity-school-wrap {
  margin-bottom: 10px;
}
.rf-admin-drawer-body .rf-drawer-activity-school-filter {
  -webkit-appearance: none;
  appearance:         none;
  width:              100%;
  background:         var(--rf-navy3);
  border:             1px solid var(--rf-border);
  border-radius:      6px;
  padding:            6px 10px;
  color:              var(--rf-off);
  font-family:        'Barlow', sans-serif;
  font-size:          12px;
  outline:            none;
  transition:         border-color .15s;
  box-sizing:         border-box;
}
.rf-admin-drawer-body .rf-drawer-activity-school-filter::placeholder { color: var(--rf-muted2); }
.rf-admin-drawer-body .rf-drawer-activity-school-filter:focus { border-color: var(--rf-border2); }

/* Delete button on activity rows */
.rf-drawer-activity-delete {
  flex-shrink:  0;
  background:   none;
  border:       none;
  padding:      4px;
  color:        var(--rf-muted);
  cursor:       pointer;
  opacity:      0;
  transition:   color .15s, opacity .15s;
  display:      flex;
  align-items:  center;
  margin-top:   1px;
}
.rf-drawer-row--activity:hover .rf-drawer-activity-delete { opacity: 1; }
.rf-drawer-activity-delete:hover { color: var(--rf-danger); }

/* ── Milestone timeline ───────────────────────────────────────────────────── */

.rf-milestone-school {
  margin-bottom: 16px;
}

.rf-milestone-school-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rf-muted);
  margin-bottom: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.rf-milestone-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  font-size: 12px;
}

.rf-milestone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rf-accent);
  flex-shrink: 0;
}

.rf-milestone-label {
  color: var(--rf-off);
  flex: 1;
}

.rf-milestone-date {
  color: var(--rf-muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

/* ── Drawer: details tab ─────────────────────────────────────────────────── */

.rf-drawer-details-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 4px;
}

.rf-drawer-details-progress-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rf-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.rf-drawer-details-progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}

.rf-drawer-details-progress-fill {
  height: 100%;
  border-radius: 3px;
}

.rf-drawer-details-progress-pct {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.rf-drawer-steps {
  padding-top: 2px;
}

.rf-drawer-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.rf-drawer-step:last-child {
  border-bottom: none;
}

.rf-drawer-step-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  margin-top: 1px;
}

.rf-drawer-step-dot--done {
  background: rgba(45,184,122,0.15);
  color: var(--rf-success);
}

.rf-drawer-step-dot--todo {
  background: rgba(43,143,255,0.15);
  color: var(--rf-accent);
}

.rf-drawer-step-dot--rf-warn {
  background: rgba(232,146,42,0.15);
  color: var(--rf-warn);
}

.rf-drawer-step-body {
  flex: 1;
  min-width: 0;
}

.rf-drawer-step-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--rf-off);
  line-height: 1.3;
}

.rf-drawer-step-title--todo { color: var(--rf-accent); }
.rf-drawer-step-title--rf-warn { color: var(--rf-warn); }

.rf-drawer-step-desc {
  font-size: 11px;
  color: var(--rf-muted);
  margin-top: 2px;
  line-height: 1.4;
}

.rf-drawer-step-dismiss {
  background: none;
  border: none;
  padding: 4px;
  color: var(--rf-muted);
  cursor: pointer;
  flex-shrink: 0;
  opacity: 0;
  transition: color .15s, opacity .15s;
  display: flex;
  align-items: center;
}
.rf-drawer-step:hover .rf-drawer-step-dismiss { opacity: 1; }
.rf-drawer-step-dismiss:hover { color: var(--rf-danger); }

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .rf-admin-drawer {
    width: 100vw;
  }
}

@media (max-width: 767px) {
  .rf-admin-main {
    padding: 16px 12px;
  }

  .rf-admin-filters {
    flex-wrap: wrap;
  }

  .rf-admin-filters input[type="search"] {
    width: 100%;
  }
}
