/* ── InHire.uk — Shared Stylesheet ────────────────────────────────────── */
/* Mobile-first • CSS custom-property tokens • BEM-lite classes            */

/* ── Dark theme (default) ──────────────────────────────────────────────── */
:root {
  color-scheme: dark;
  --bg: #0a0d14;
  --surface: #111520;
  --border: rgba(255, 255, 255, 0.07);
  --text: #e8ecf4;
  --muted: #6b7591;
  --accent1: #4f7dff;
  --accent2: #a259ff;
  --accent3: #00e5c3;
  --radius: 14px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Light theme ───────────────────────────────────────────────────────── */
[data-theme="light"] {
  color-scheme: light;
  --bg: #f4f6fb;
  --surface: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --text: #0f1117;
}

/* Respect OS preference when no explicit theme is set */
@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    color-scheme: light;
    --bg: #f4f6fb;
    --surface: #ffffff;
    --border: rgba(0, 0, 0, 0.08);
    --text: #0f1117;
  }
}

/* ── Base reset & typography ───────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  min-height: 100vh;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  overflow-x: hidden;
}

/* ── Grid noise overlay ───────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── Ambient background orbs ──────────────────────────────────────────── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  pointer-events: none;
  animation: drift 18s ease-in-out infinite alternate;
  z-index: 0;
}
.orb-1 {
  width: 600px; height: 600px;
  background: var(--accent1);
  top: -150px; left: -150px;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: var(--accent2);
  bottom: -100px; right: -100px;
  animation-delay: -6s;
}
.orb-3 {
  width: 350px; height: 350px;
  background: var(--accent3);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -12s;
}

@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -20px) scale(1.05); }
  100% { transform: translate(-20px, 30px) scale(0.97); }
}

a {
  color: var(--accent1);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4 {
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h2 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }

/* ── Layout ────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Navigation ────────────────────────────────────────────────────────── */
.site-nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}
.nav-logo span {
  color: var(--accent1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.nav-links a:not(.btn) {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:not(.btn):hover {
  color: var(--text);
  text-decoration: none;
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  border-radius: 8px;
  padding: 0.35rem 0.6rem;
  font-size: 1rem;
  line-height: 1;
  transition: border-color 0.2s;
}
.theme-toggle:hover {
  border-color: var(--accent1);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  border-radius: 8px;
  padding: 0.35rem 0.6rem;
  font-size: 1.25rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem;
    gap: 0.75rem;
  }
  .nav-links--open {
    display: flex;
  }
}

/* ── Cards ─────────────────────────────────────────────────────────────── */
.card {
  background: rgba(17, 21, 32, 0.55);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  border-color: rgba(79, 125, 255, 0.40);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(79, 125, 255, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  transform: translateY(-2px);
}

.card-title {
  border-left: 3px solid var(--accent1);
  padding-left: 0.6rem;
}

/* Auth/hero cards — stronger glass */
.auth-card {
  background: rgba(17, 21, 32, 0.72);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.1s;
  line-height: 1.4;
}
.btn:hover {
  opacity: 0.9;
  text-decoration: none;
}
.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color: #fff;
  box-shadow: 0 4px 18px rgba(79, 125, 255, 0.35);
}
.btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 6px 24px rgba(79, 125, 255, 0.50);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.20);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.20);
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-success {
  background: var(--accent3);
  color: #0a0d14;
}

.btn-danger {
  background: #e74c3c;
  color: #fff;
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
}

/* ── Lucide icons ──────────────────────────────────────────────────────── */
[data-lucide],
.lucide {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ── Forms ──────────────────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #8b9bbf;
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.20);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent1);
  background: rgba(79, 125, 255, 0.05);
  box-shadow:
    0 0 0 3px rgba(79, 125, 255, 0.18),
    inset 0 1px 3px rgba(0, 0, 0, 0.10);
}

.form-input::placeholder {
  color: var(--muted);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-error {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* ── Flash messages ────────────────────────────────────────────────────── */
.flash {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.flash-success {
  background: rgba(0, 229, 195, 0.1);
  border: 1px solid rgba(0, 229, 195, 0.3);
  color: var(--accent3);
}
.flash-error {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}
.flash-info {
  background: rgba(79, 125, 255, 0.1);
  border: 1px solid rgba(79, 125, 255, 0.3);
  color: var(--accent1);
}

/* ── Listing cards ─────────────────────────────────────────────────────── */
.listing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.listing-card:hover {
  border-color: var(--accent1);
  transform: translateY(-2px);
}

.listing-card-image {
  aspect-ratio: 16/10;
  background: var(--bg);
  overflow: hidden;
}
.listing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-card-body {
  padding: 1rem 1.25rem;
}

.listing-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.listing-card-meta {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.listing-card-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent3);
}

/* ── Search form ───────────────────────────────────────────────────────── */
.search-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.search-form .form-input {
  flex: 1;
  min-width: 200px;
}

/* ── Pagination ────────────────────────────────────────────────────────── */
.pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin: 2rem 0;
  list-style: none;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.5rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s;
}
.pagination a:hover {
  border-color: var(--accent1);
}
.pagination .active {
  background: var(--accent1);
  border-color: var(--accent1);
  color: #fff;
}

/* ── Tables ────────────────────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

th {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ── Badges ────────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-success { background: rgba(0,229,195,0.15); color: var(--accent3); }
.badge-warning { background: rgba(255,193,7,0.15); color: #ffc107; }
.badge-danger  { background: rgba(231,76,60,0.15); color: #e74c3c; }
.badge-info    { background: rgba(79,125,255,0.15); color: var(--accent1); }

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 3rem;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ── Animations ────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.4s ease forwards;
  opacity: 0;
}
.fade-up-1 { animation-delay: 0s; }
.fade-up-2 { animation-delay: 0.1s; }
.fade-up-3 { animation-delay: 0.2s; }
.fade-up-4 { animation-delay: 0.3s; }
.fade-up-5 { animation-delay: 0.4s; }
.fade-up-6 { animation-delay: 0.5s; }

/* ── Utility ───────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.text-gradient {
  background: linear-gradient(90deg, var(--accent1), var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Category cards ───────────────────────────────────────────────────── */
.category-card {
  display: block;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  overflow: hidden;
  padding: 0;
}
.category-card:hover {
  border-color: var(--accent1);
  transform: translateY(-2px);
  text-decoration: none;
}

.category-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg);
}
.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}
.category-card:hover .category-card-img img {
  transform: scale(1.04);
}

.category-card h3,
.category-card p {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.category-card h3 {
  padding-top: 1rem;
}
.category-card > p:last-child {
  padding-bottom: 1rem;
}

/* When there's no image, restore normal card padding */
.category-card:not(:has(.category-card-img)) {
  padding: 1.5rem;
}
.category-card:not(:has(.category-card-img)) h3,
.category-card:not(:has(.category-card-img)) p {
  padding-left: 0;
  padding-right: 0;
}

/* ── Category hero ────────────────────────────────────────────────────── */
.category-hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
}

.category-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.category-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 13, 20, 0.85) 0%,
    rgba(10, 13, 20, 0.35) 55%,
    rgba(10, 13, 20, 0.10) 100%
  );
}

.category-hero-body {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  width: 100%;
}

.category-hero-body h1 {
  margin-bottom: 0.35rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.category-hero-body p {
  color: rgba(232, 236, 244, 0.85);
  font-size: 0.9rem;
  max-width: 680px;
  margin: 0;
}

/* Text-only header (no image) */
.category-header {
  margin-bottom: 1.5rem;
}

.category-header p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.35rem;
  max-width: 680px;
}

/* ── Search hero ──────────────────────────────────────────────────────── */
.search-hero .search-form {
  max-width: 720px;
  margin: 0 auto;
}

/* ── Detail page ──────────────────────────────────────────────────────── */
.detail-header {
  margin-bottom: 1.5rem;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.detail-rates {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.rate-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.rate-block-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent3);
}

.rate-block-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.image-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .image-gallery {
    grid-template-columns: 2fr 1fr;
  }
}

.image-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ── Attributes table ─────────────────────────────────────────────────── */
.attr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.attr-item {
  padding: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.attr-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.attr-value {
  font-weight: 600;
  margin-top: 0.15rem;
}

/* ── Listing card image placeholder ──────────────────────────────────── */
.listing-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg,
    rgba(79, 125, 255, 0.06) 0%,
    rgba(162, 89, 255, 0.06) 100%);
  color: var(--muted);
  padding: 1rem;
}

.listing-card-placeholder svg {
  width: 2.5rem;
  height: 2.5rem;
  opacity: 0.45;
  flex-shrink: 0;
}

.listing-card-placeholder span {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Enquiry form ─────────────────────────────────────────────────────── */
.enquiry-form {
  max-width: 600px;
}

/* ── Company profile ──────────────────────────────────────────────────── */
.profile-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

/* ── Breadcrumbs ──────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
  list-style: none;
}

.breadcrumb li + li::before {
  content: '/';
  margin-right: 0.35rem;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--accent1);
}

/* ── Light theme glass overrides ─────────────────────────────────────── */
@media (prefers-color-scheme: light) {
  :root:not([data-theme]) .card {
    background: rgba(255, 255, 255, 0.70);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.10),
      0 1px 0 rgba(255, 255, 255, 0.80) inset;
  }
}

[data-theme="light"] .card {
  background: rgba(255, 255, 255, 0.70);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.80) inset;
}

[data-theme="light"] .card:hover {
  border-color: rgba(79, 125, 255, 0.30);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(79, 125, 255, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.90) inset;
}

[data-theme="light"] .auth-card {
  background: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.90) inset;
}

[data-theme="light"] .form-input,
[data-theme="light"] .form-select,
[data-theme="light"] .form-textarea {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.10);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .form-input:focus,
[data-theme="light"] .form-select:focus,
[data-theme="light"] .form-textarea:focus {
  background: rgba(79, 125, 255, 0.04);
  box-shadow:
    0 0 0 3px rgba(79, 125, 255, 0.15),
    inset 0 1px 2px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .form-label {
  color: #5a6a8a;
}

[data-theme="light"] .btn-secondary {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .btn-secondary:hover {
  background: rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.18);
}
