:root {
  --brand-bg: #faf7f5;
  --brand-primary: #a9f134; /* Proper Wild neon green */
  --brand-accent: #715fcc; /* Proper Wild purple accent */
  --brand-text: #1f1f1f;
  --brand-ink: #111111;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-pop: 0 8px 26px rgba(113, 95, 204, 0.18);
}
html,
body {
  background: radial-gradient(
      1200px 1200px at -10% -10%,
      rgba(169, 241, 52, 0.06),
      transparent 60%
    ),
    radial-gradient(
      1000px 1000px at 110% 10%,
      rgba(113, 95, 204, 0.05),
      transparent 60%
    ),
    var(--brand-bg);
}
@font-face {
  font-family: "icons";
  src: url("//properwild.com/cdn/shop/t/3/assets/icons.eot?v=158399200609435563841542220428");
  src: url("//properwild.com/cdn/shop/t/3/assets/icons.eot?v=158399200609435563841542220428#iefix")
      format("embedded-opentype"),
    url("//properwild.com/cdn/shop/t/3/assets/icons.woff?v=169945158533379702731542220429")
      format("woff"),
    url("//properwild.com/cdn/shop/t/3/assets/icons.ttf?v=152698340250222789721542220429")
      format("truetype"),
    url("//properwild.com/cdn/shop/t/3/assets/icons.svg?v=1632698112070928441542220429#timber-icons")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RightGrotesk";
  src: url("https://cdn.shopify.com/s/files/1/0019/2020/4854/files/PPRightGroteskText-Regular.woff?v=1727784154");
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: "RightGrotesk";
  src: url("https://cdn.shopify.com/s/files/1/0019/2020/4854/files/PPRightGroteskText-Bold.woff?v=1727784557");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "RightGrotesk";
  src: url("https://cdn.shopify.com/s/files/1/0019/2020/4854/files/PPRightGrotesk-SpatialBlack.woff?v=1727783646");
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "BeverlyDrive";
  src: url("https://cdn.shopify.com/s/files/1/0019/2020/4854/files/BeverlyDriveRight-Regular.woff?v=1727783374");
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: "BeverlyDrive";
  src: url("https://cdn.shopify.com/s/files/1/0019/2020/4854/files/BeverlyDriveRight-Extrabold.woff?v=1727783409");
  font-weight: 900;
  font-display: swap;
}
* {
  box-sizing: border-box;
}
/*============================================================================
    #Typography
  ==============================================================================*/
body,
input,
textarea,
button,
select {
  font-size: 14px;
  line-height: 1.6;
  font-family: "RightGrotesk", "Arial Black", sans-serif;
  color: #333333;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  display: block;
  font-family: "RightGrotesk", "Arial Black", sans-serif;
  font-weight: 700;
  margin: 0 0 0.5em;
  line-height: 1.4;
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
  text-decoration: none;
  font-weight: inherit;
}

/*================ Use em() Sass function to declare font-size ================*/
h1,
.h1 {
  font-size: 2.57143em;
}

h2,
.h2 {
  font-size: 2em;
}

h3,
.h3 {
  font-size: 1.57143em;
}

h4,
.h4 {
  font-size: 1.42857em;
}

h5,
.h5 {
  font-size: 1.14286em;
}

h6,
.h6 {
  font-size: 1em;
}

p {
  margin: 0 0 15px 0;
}
p img {
  margin: 0;
}

em {
  font-style: italic;
}

b,
strong {
  font-weight: bold;
}

small {
  font-size: 0.9em;
}

sup,
sub {
  position: relative;
  font-size: 60%;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.5em;
}

/*================ Blockquotes ================*/
blockquote {
  font-size: 1.125em;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 30px;
  padding: 15px 30px;
  border-left: 1px solid #e5e5e5;
}
blockquote p {
  margin-bottom: 0;
}
blockquote p + cite {
  margin-top: 15px;
}
blockquote cite {
  display: block;
  font-size: 0.75em;
}
blockquote cite:before {
  content: "\2014 \0020";
}

/*================ Code ================*/
code,
pre {
  background-color: #faf7f5;
  font-family: Consolas, monospace;
  font-size: 1em;
  border: 0 none;
  padding: 0 2px;
  color: #51ab62;
}

pre {
  overflow: auto;
  padding: 15px;
  margin: 0 0 30px;
}

/*================ Horizontal Rules ================*/
hr {
  clear: both;
  border-top: solid #e5e5e5;
  border-width: 1px 0 0;
  margin: 30px 0;
  height: 0;
}
hr.hr--small {
  margin: 15px 0;
}
hr.hr--clear {
  border-top-color: transparent;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 16px;
}
.site-header {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 10px 12px;
  position: sticky;
  top: 12px;
  z-index: 10;
  backdrop-filter: saturate(120%) blur(6px);
  margin-bottom: 16px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.title-link {
  text-decoration: none;
  color: inherit;
}

.title-link:hover {
  opacity: 0.8;
}

.site-header .title {
  font-family: "BeverlyDrive", "RightGrotesk", system-ui, -apple-system, Arial,
    sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.2px;
  color: var(--brand-ink);
}

.auth-buttons {
  display: flex;
  gap: 8px;
}

.auth-buttons .button-link {
  text-decoration: none;
}
.button-link {
  display: inline-block;
  background: var(--brand-primary);
  color: #111;
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 6px 16px rgba(169, 241, 52, 0.28);
}
.button-link:hover {
  box-shadow: 0 8px 22px rgba(169, 241, 52, 0.36);
}
.button-link:active {
  box-shadow: 0 4px 12px rgba(169, 241, 52, 0.24);
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 18px;
}
.controls {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
  justify-content: space-between;
}

.search-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.last-updated-section {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}

.last-updated-label {
  font-weight: 500;
}

.last-updated-time {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
}
input[type="search"] {
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  min-width: 260px;
  outline: none;
}
button {
  background: var(--brand-primary);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  transition: transform 0.02s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 16px rgba(169, 241, 52, 0.28);
}
button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(169, 241, 52, 0.36);
}
button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(169, 241, 52, 0.24);
}
.pill {
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 14px;
}
.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}
.table thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  text-align: left;
  padding: 0 12px 6px;
}
.table thead th:last-child,
.table tbody td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums lining-nums;
  -webkit-font-feature-settings: "tnum" 1, "lnum" 1;
  font-feature-settings: "tnum" 1, "lnum" 1;
  white-space: nowrap;
}
.table tbody tr {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
}
.table tbody tr:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}
.table tbody tr.me {
  background: #f3fbe0;
  box-shadow: 0 6px 24px rgba(169, 241, 52, 0.16);
}
.table tbody tr.me td.rank {
  font-weight: 800;
}
.table tbody td {
  padding: 14px 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.table tbody tr:first-child td {
  border-top: 0;
}
.rank {
  width: 64px;
  text-align: right;
  padding-right: 18px;
  font-weight: 700;
}
.table:not(.no-top3) tbody tr:nth-child(-n + 3) {
  outline: 2px solid rgba(113, 95, 204, 0.18);
  box-shadow: var(--shadow-pop);
}
.table:not(.no-top3) tbody tr:nth-child(1) .rank,
.table:not(.no-top3) tbody tr:nth-child(2) .rank,
.table:not(.no-top3) tbody tr:nth-child(3) .rank {
  display: inline-block;
  min-width: 44px;
  text-align: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: #111;
  background: #e9ebff;
}
.table:not(.no-top3) tbody tr:nth-child(1) .rank::before {
  content: "🥇";
  margin-right: 6px;
}
.table:not(.no-top3) tbody tr:nth-child(2) .rank::before {
  content: "🥈";
  margin-right: 6px;
}
.table:not(.no-top3) tbody tr:nth-child(3) .rank::before {
  content: "🥉";
  margin-right: 6px;
}
.college {
  font-weight: 600;
}
.empty {
  padding: 24px;
  text-align: center;
  opacity: 0.7;
}
.muted {
  opacity: 0.6;
}
.site-footer {
  margin-top: 28px;
  opacity: 0.7;
  font-size: 14px;
  text-align: center;
}

/* Hero */
/* removed hero styles */

/* Ambassador summary */
.ambassador-summary {
  margin-bottom: 16px;
}
.ambassador-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.ambassador-header .stat {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.ambassador-header .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
}
.ambassador-header .value {
  font-size: 24px;
  font-weight: 800;
  margin-top: 4px;
}

/* Public stats */
.public-stats {
  margin-bottom: 16px;
}
.public-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.public-header .stat {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.public-header .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
}
.public-header .value {
  font-size: 20px;
  font-weight: 800;
  margin-top: 3px;
}

/* Ensure copy link button has black text */
.ambassador-header .stat:last-child button {
  color: #111;
}
.progress {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.progress-track {
  position: relative;
  height: 18px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  font-size: 12px;
  font-weight: 700;
}
.marker {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  height: 34px;
  width: 2px;
  background: rgba(0, 0, 0, 0.25);
}
.marker span {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  background: #fff;
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.progress-scale {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.7;
}

/* Removed decorative orb/confetti accent for cleaner look */

/* Login Page Styles */
.login-container {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
}

.login-header {
  text-align: center;
  margin-bottom: 32px;
}

.login-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 48px;
  margin-bottom: 8px;
}

.login-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-ink);
  margin: 0;
  font-family: "RightGrotesk", "Arial Black", sans-serif;
}

.login-header p {
  color: #666;
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
}

.login-form {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-ink);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  background: #fafafa;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(169, 241, 52, 0.1);
}

.form-input::placeholder {
  color: #999;
}

.btn {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: var(--brand-primary);
  color: var(--brand-ink);
  box-shadow: 0 6px 16px rgba(169, 241, 52, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(169, 241, 52, 0.36);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(169, 241, 52, 0.24);
}

.btn-secondary {
  background: #ffffff;
  color: var(--brand-ink);
  border: 2px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
  border-color: var(--brand-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.login-divider {
  text-align: center;
  margin: 24px 0;
  position: relative;
}

.login-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e5e5;
}

.login-divider span {
  background: #ffffff;
  padding: 0 16px;
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

.login-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  display: none;
}

.login-message.error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.login-message.success {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.login-message.info {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.login-footer {
  margin-top: 32px;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
}

.login-footer p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.link {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 600;
}

.link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 12px;
  }

  .site-header {
    padding: 8px 10px;
    margin-bottom: 12px;
  }

  .site-header .title {
    font-size: 20px;
  }

  .header-content {
    gap: 8px;
  }

  .auth-buttons {
    gap: 6px;
  }

  /* Ambassador summary - 2x2 grid layout on mobile */
  .ambassador-header {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }

  .ambassador-header .stat {
    padding: 8px;
  }

  .ambassador-header .label {
    font-size: 10px;
  }

  .ambassador-header .value {
    font-size: 16px;
    margin-top: 2px;
  }

  /* Public stats - already 2x1 grid, just adjust sizing */
  .public-header {
    gap: 8px;
  }

  .public-header .stat {
    padding: 8px;
  }

  .public-header .label {
    font-size: 10px;
  }

  .public-header .value {
    font-size: 16px;
    margin-top: 2px;
  }

  /* Make the share link button smaller */
  .ambassador-header .stat:last-child button {
    font-size: 11px;
    padding: 5px 8px;
    color: #111;
  }

  /* Controls - make search input responsive */
  .controls {
    gap: 8px;
    margin-bottom: 10px;
  }

  input[type="search"] {
    min-width: 0;
    flex: 1;
    padding: 8px 10px;
    font-size: 14px;
  }

  /* Table responsive design - tighter spacing */
  .table {
    font-size: 12px;
    border-spacing: 0 4px;
  }

  .table thead th {
    font-size: 10px;
    padding: 0 6px 3px;
  }

  .table tbody td {
    padding: 8px 6px;
  }

  .rank {
    width: 32px;
    padding-right: 8px;
    font-size: 11px;
  }

  /* Top 3 styling adjustments for mobile */
  .table:not(.no-top3) tbody tr:nth-child(1) .rank,
  .table:not(.no-top3) tbody tr:nth-child(2) .rank,
  .table:not(.no-top3) tbody tr:nth-child(3) .rank {
    min-width: 28px;
    padding: 3px 5px;
    font-size: 10px;
  }

  /* Progress bar adjustments */
  .progress-track {
    height: 14px;
  }

  .progress-fill {
    font-size: 11px;
    padding-right: 6px;
  }

  .marker {
    height: 28px;
    top: -7px;
  }

  .marker span {
    font-size: 11px;
    top: -14px;
    padding: 1px 4px;
  }

  .progress-scale {
    font-size: 11px;
  }

  /* Card padding adjustment */
  .card {
    padding: 12px;
  }

  /* Button adjustments */
  button {
    padding: 8px 12px;
    font-size: 13px;
  }

  .button-link {
    padding: 6px 10px;
    font-size: 13px;
  }

  /* Login page mobile adjustments */
  .login-container {
    padding: 16px;
    min-height: calc(100vh - 160px);
  }

  .login-card {
    padding: 32px 24px;
    border-radius: 16px;
  }

  .login-header h1 {
    font-size: 24px;
  }

  .login-header p {
    font-size: 14px;
  }

  .logo-icon {
    font-size: 40px;
  }

  .form-input {
    padding: 12px 14px;
    font-size: 16px; /* Prevent zoom on iOS */
  }

  .btn {
    padding: 12px 18px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
}

@media (max-width: 480px) {
  .container {
    padding: 8px;
  }

  .site-header .title {
    font-size: 18px;
  }

  .header-content {
    gap: 6px;
  }

  .auth-buttons {
    gap: 4px;
  }

  .button-link {
    padding: 5px 8px;
    font-size: 12px;
  }

  /* Ambassador stats - keep 2x2 grid but make more compact */
  .ambassador-header {
    gap: 6px;
    margin-bottom: 10px;
  }

  .ambassador-header .stat {
    padding: 6px;
  }

  .ambassador-header .label {
    font-size: 9px;
  }

  .ambassador-header .value {
    font-size: 14px;
    margin-top: 1px;
  }

  /* Public stats - ultra compact for small mobile */
  .public-header {
    gap: 6px;
  }

  .public-header .stat {
    padding: 6px;
  }

  .public-header .label {
    font-size: 9px;
  }

  .public-header .value {
    font-size: 14px;
    margin-top: 1px;
  }

  /* Make the share link button smaller */
  .ambassador-header .stat:last-child button {
    font-size: 10px;
    padding: 4px 6px;
    color: #111;
  }

  /* Table - ultra compact for mobile */
  .card {
    overflow-x: auto;
    padding: 10px;
  }

  .table {
    min-width: 350px;
    font-size: 11px;
    border-spacing: 0 2px;
  }

  .table thead th {
    font-size: 9px;
    padding: 0 4px 2px;
  }

  .table tbody td {
    padding: 6px 4px;
  }

  .rank {
    width: 28px;
    padding-right: 6px;
    font-size: 10px;
  }

  .college {
    font-size: 11px;
  }

  /* Top 3 styling adjustments for very small screens */
  .table:not(.no-top3) tbody tr:nth-child(1) .rank,
  .table:not(.no-top3) tbody tr:nth-child(2) .rank,
  .table:not(.no-top3) tbody tr:nth-child(3) .rank {
    min-width: 24px;
    padding: 2px 4px;
    font-size: 9px;
  }

  /* Controls - stack vertically on very small screens */
  .controls {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin-bottom: 8px;
  }

  input[type="search"] {
    width: 100%;
    padding: 6px 8px;
    font-size: 13px;
  }

  /* Progress bar adjustments */
  .progress-track {
    height: 12px;
  }

  .progress-fill {
    font-size: 10px;
    padding-right: 4px;
  }

  .marker {
    height: 24px;
    top: -6px;
  }

  .marker span {
    font-size: 10px;
    top: -12px;
    padding: 1px 3px;
  }

  .progress-scale {
    font-size: 10px;
  }

  /* Login page ultra mobile adjustments */
  .login-container {
    padding: 12px;
    min-height: calc(100vh - 140px);
  }

  .login-card {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .login-header h1 {
    font-size: 22px;
  }

  .login-header p {
    font-size: 13px;
  }

  .logo-icon {
    font-size: 36px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-label {
    font-size: 13px;
  }

  .form-input {
    padding: 10px 12px;
    font-size: 16px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 16px;
  }

  .login-divider {
    margin: 20px 0;
  }

  .login-footer {
    margin-top: 24px;
    padding-top: 20px;
  }
}
