/* CSS Variables */
body {
  /* Navigation Variables - Primary Main (#3b82f6) */
  --pnav-bg: rgba(15, 23, 42, 0.85);
  --pnav-text: #f8fafc;
  --pnav-muted: #94a3b8;
  --pnav-accent: #3b82f6;
  --pnav-accent-glow: rgba(59, 130, 246, 0.25);
  --pnav-border: rgba(255, 255, 255, 0.08);
  --pnav-dropdown-bg: #0f172a;

  /* Navigation Secondary Accent (#da6313) */
  --pnav-secondary: #da6313;
  --pnav-secondary-hover: #b9520e;
  --pnav-secondary-glow: rgba(218, 99, 19, 0.28);

  /* Profile Variables - Primary Main (#3b82f6) */
  --prof-bg: #0b0f19;
  --prof-card-bg: rgba(15, 23, 42, 0.75);
  --prof-card-border: rgba(255, 255, 255, 0.08);
  --prof-text-main: #f8fafc;
  --prof-text-sub: #94a3b8;
  --prof-blue-accent: #3b82f6;
  --prof-blue-glow: rgba(59, 130, 246, 0.25);
  --prof-input-bg: rgba(30, 41, 59, 0.5);
  --prof-input-border: rgba(255, 255, 255, 0.12);

  /* Profile Secondary Accent (#da6313) */
  --prof-secondary: #da6313;
  --prof-secondary-hover: #b9520e;
  --prof-secondary-glow: rgba(218, 99, 19, 0.28);

  background-color: var(--prof-bg);
  color: var(--prof-text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
  margin: 0;
  padding-top: 64px;
}

/* Header Wrapper (Fixed top container for header + search row) */
.pnav-header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #0f172a;
  border-bottom: 1px solid var(--pnav-border);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

/* ==========================================================================
    1. NAVBAR STYLES
    ========================================================================== */

.pnav-header {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 10002;
}

.pnav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Brand & Logo */
.pnav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  user-select: none;
}

.pnav-logo {
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.pnav-brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: nowrap;
}

/* Links List */
.pnav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.pnav-item-link {
  color: var(--pnav-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.pnav-item-link:hover {
  color: var(--pnav-text);
}

/* Action button mapped to secondary warm orange accent */
.pnav-btn-action {
  background-color: var(--pnav-secondary);
  color: #ffffff;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px var(--pnav-secondary-glow);
  transition: all 0.2s ease;
  text-align: center;
}

.pnav-btn-action:hover {
  background-color: var(--pnav-secondary-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--pnav-secondary-glow);
}

/* Dropdown Menu */
.pnav-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.pnav-dropdown-wrapper::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  display: none;
}

.pnav-dropdown-wrapper:hover::after {
  display: block;
}

.pnav-trigger-btn {
  background: #1e293b;
  border: 1px solid rgba(59, 130, 246, 0.35);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pnav-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.pnav-trigger-btn .pnav-icon-caret {
  color: var(--pnav-accent);
  transition: transform 0.2s ease;
}

.pnav-trigger-btn:hover {
  border-color: var(--pnav-accent);
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 14px var(--pnav-accent-glow);
}

.pnav-dropdown-wrapper:hover .pnav-icon-caret {
  transform: translateY(2px);
}

.pnav-menu-panel {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 6px;
  min-width: 240px;
  z-index: 10005;
  padding: 0.5rem;
  isolation: isolate;
  background-color: #0f172a !important;
  background-image: linear-gradient(160deg, #1e293b 0%, #0f172a 100%) !important;
  border: 1px solid rgba(99, 102, 241, 0.4);
  border-radius: 12px;
  box-shadow:  
    0 20px 40px -10px rgba(0, 0, 0, 0.85),
    0 0 20px rgba(59, 130, 246, 0.25);
  overflow: hidden;
  box-sizing: border-box;
}

.pnav-dropdown-wrapper:hover .pnav-menu-panel,
.pnav-menu-panel.pnav-is-visible {
  display: block !important;
}

/* User Profile Panel Header */
.pnav-profile-card {
  padding: 0.85rem 1rem;
  margin-bottom: 0.35rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1e293b;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.pnav-user-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.pnav-user-subtext {
  font-size: 0.78rem;
  color: #93c5fd;
  word-break: break-all;
}

/* Dropdown Menu Items */
.pnav-panel-link {
  color: var(--pnav-muted);
  padding: 0.7rem 0.9rem;
  margin: 0.15rem 0;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.pnav-panel-link:hover {
  background: #1e293b;
  color: #ffffff;
  transform: translateX(3px);
}

.pnav-panel-link.pnav-logout-btn {
  color: #fca5a5;
  margin-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 8px 8px;
}

.pnav-panel-link.pnav-logout-btn:hover {
  background: #7f1d1d;
  color: #ffffff;
  transform: translateX(3px);
}

/* Mobile Toggle Hamburger */
.pnav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.pnav-hamburger-line {
  height: 2px;
  width: 100%;
  background-color: var(--pnav-text);
  border-radius: 2px;
}

/* ==========================================================================
    2. BOTTOM ROW: SEARCH BAR, GENDER FILTER & AUTOCOMPLETE
    ========================================================================== */

.pnav-search-row {
  width: 100%;
  padding: 0.55rem 0;
  background-color: #0f172a;
  border-top: 1px solid var(--pnav-border);
  box-sizing: border-box;
  position: relative;
  z-index: 10000;
}

.pnav-search-row .pnav-container {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.pnav-gender-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 680px;
}

.pnav-gender-label {
  font-size: 0.75rem;
  color: var(--pnav-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 0.2rem;
  white-space: nowrap;
}

.pnav-gender-pills {
  display: inline-flex;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2px;
  gap: 2px;
}

.pnav-gender-option {
  background: transparent;
  border: none;
  color: var(--pnav-muted);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.pnav-gender-option:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.pnav-gender-option.is-active,
.pnav-gender-option[aria-pressed="true"] {
  background-color: var(--pnav-accent);
  color: #ffffff;
  box-shadow: 0 2px 8px var(--pnav-accent-glow);
}

.pnav-search-form {
  position: relative;
  width: 100%;
  max-width: 680px;
}

.pnav-search-wrapper {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
}

.pnav-search-input-group {
  flex: 1;
  display: flex;
  align-items: center;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  transition: all 0.2s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pnav-search-input-group:focus-within {
  border-color: var(--pnav-accent);
  background: #1e293b;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pnav-search-icon {
  color: var(--pnav-muted);
  flex-shrink: 0;
  margin-right: 0.6rem;
}

.pnav-search-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--pnav-text);
  font-size: 0.92rem;
  font-family: inherit;
  padding: 0;
}

.pnav-search-input::placeholder {
  color: #64748b;
}

/* Search Submit Button mapped to secondary warm orange accent */
.pnav-search-btn {
  background-color: var(--pnav-secondary);
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--pnav-secondary-glow);
}

.pnav-search-btn:hover {
  background-color: var(--pnav-secondary-hover);
  box-shadow: 0 6px 16px var(--pnav-secondary-glow);
}

.pnav-search-btn:active {
  transform: scale(0.98);
}

@media (min-width: 768px) {
  .pnav-search-row .pnav-container {
    flex-direction: row;
    gap: 0.75rem;
    max-width: 960px;
    justify-content: center;
  }

  .pnav-gender-bar {
    width: auto;
    max-width: none;
    flex-shrink: 0;
  }

  .pnav-search-form {
    max-width: 600px;
    flex: 1;
  }
}

.pnav-live-results {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background-color: #0f172a !important;
  background-image: linear-gradient(160deg, #1e293b 0%, #0f172a 100%) !important;
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 10px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.8);
  z-index: 10001;
  overflow: hidden;
  max-height: 260px;
  overflow-y: auto;
}

.pnav-live-results.is-active {
  display: block;
}

.pnav-live-item {
  padding: 0.7rem 1rem;
  color: var(--pnav-muted);
  font-size: 0.9rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.pnav-live-item:last-child {
  border-bottom: none;
}

.pnav-live-item:hover {
  background: #1e293b;
  color: #ffffff;
}

/* ==========================================================================
    3. PROFILE PAGE STYLES
    ========================================================================== */

.prof-wrapper {
  max-width: 1200px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.prof-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2rem;
}

.prof-card {
  background: var(--prof-card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--prof-card-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  overflow: visible;
}

.prof-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.prof-avatar-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 1.25rem;
}

.prof-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--prof-blue-accent);
  box-shadow: 0 0 20px var(--prof-blue-glow);
  background-color: #1e293b;
}

.prof-avatar-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.prof-avatar-container:hover .prof-avatar-overlay {
  opacity: 1;
}

.prof-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: var(--prof-text-main);
}

.prof-email {
  font-size: 0.9rem;
  color: var(--prof-text-sub);
  margin-bottom: 1.5rem;
  word-break: break-all;
}

/* Status Badges */
.prof-badge-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
  width: 100%;
}

.prof-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.825rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.025em;
}

.prof-badge .prof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.prof-badge-active {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.prof-badge-active .prof-dot {
  background-color: #34d399;
  box-shadow: 0 0 8px #34d399;
}

.prof-badge-pending {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.prof-badge-pending .prof-dot {
  background-color: #fbbf24;
  box-shadow: 0 0 8px #fbbf24;
}

.prof-badge-suspended {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.prof-badge-suspended .prof-dot {
  background-color: #f87171;
  box-shadow: 0 0 8px #f87171;
}

.prof-badge-credits {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.825rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.prof-sidebar-meta {
  width: 100%;
  border-top: 1px solid var(--prof-card-border);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.prof-meta-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.prof-meta-label {
  color: var(--prof-text-sub);
}

.prof-meta-value {
  color: var(--prof-text-main);
  font-weight: 500;
}

/* Form Styles */
.prof-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--prof-card-border);
  color: var(--prof-text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.prof-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.prof-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.prof-form-group.full-width {
  grid-column: span 2;
}

.prof-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--prof-text-sub);
}

.prof-form-input {
  background: var(--prof-input-bg);
  border: 1px solid var(--prof-input-border);
  color: var(--prof-text-main);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.prof-form-input:focus {
  border-color: var(--prof-blue-accent);
  box-shadow: 0 0 12px var(--prof-blue-glow);
  background: rgba(30, 41, 59, 0.8);
}

.prof-form-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Targeted Areas / Tag Input Styles */
.prof-tag-wrapper {
  position: relative;
  overflow: visible;
  width: 100%;
}

.prof-tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: var(--prof-input-bg);
  border: 1px solid var(--prof-input-border);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  min-height: 48px;
  align-items: center;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.prof-tag-container:focus-within {
  border-color: var(--prof-blue-accent);
  box-shadow: 0 0 12px var(--prof-blue-glow);
  background: rgba(30, 41, 59, 0.8);
}

.prof-tag {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.35);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.prof-tag-remove {
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: background 0.2s ease;
}

.prof-tag-remove:hover {
  background: rgba(239, 68, 68, 0.8);
}

.prof-form-input-tag {
  background: transparent;
  border: none;
  outline: none;
  color: var(--prof-text-main);
  font-size: 0.95rem;
  padding: 0.35rem 0.25rem;
  flex: 1;
  min-width: 140px;
}

.prof-form-input-tag::placeholder {
  color: var(--prof-text-sub);
  opacity: 0.7;
}

.prof-suggestions-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #1e293b;
  border: 1px solid var(--prof-card-border);
  border-radius: 10px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 9999;
  box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.5);
  display: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.prof-suggestion-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--prof-text-main);
  border-bottom: 1px solid var(--prof-card-border);
  transition: background 0.15s ease, color 0.15s ease;
}

.prof-suggestion-item:last-child {
  border-bottom: none;
}

.prof-suggestion-item:hover {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.prof-limit-warning {
  font-size: 0.825rem;
  color: #f87171;
  margin-top: 0.4rem;
  display: none;
}

/* Profile Save Button mapped to secondary warm orange accent */
.prof-btn-save {
  background: var(--prof-secondary);
  color: #fff;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--prof-secondary-glow);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.prof-btn-save:hover {
  background: var(--prof-secondary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--prof-secondary-glow);
}

/* Alert Boxes */
.prof-alert {
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: none;
}

.prof-alert-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.prof-alert-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

/* ==========================================================================
    4. MEDIA QUERIES
    ========================================================================== */

@media (min-width: 769px) {
  .pnav-dropdown-wrapper:hover .pnav-menu-panel {
    display: block;
  }
}

@media (max-width: 900px) {
  .prof-grid {
    grid-template-columns: 1fr;
  }
  
  .prof-form-grid {
    grid-template-columns: 1fr;
  }
  
  .prof-form-group.full-width {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .pnav-hamburger {
    display: flex;
  }

  .pnav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    background-color: var(--pnav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--pnav-border);
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    align-items: stretch;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
  }

  .pnav-menu.pnav-is-open {
    display: flex;
  }

  .pnav-dropdown-wrapper {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .pnav-trigger-btn {
    width: 100%;
    justify-content: space-between;
  }

  .pnav-menu-panel {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 0.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  .pnav-search-row {
    padding: 0.5rem 0;
  }

  .pnav-search-wrapper {
    gap: 0.4rem;
  }

  .pnav-search-input-group {
    padding: 0.45rem 0.65rem;
  }

  .pnav-search-btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
  }
}