:root {
  /* Primary */
  --primary-green: #17cf17;
  --primary-dark-blue: #022731;

  /* Secondary */
  --secondary-columbia: #b7c3d3;
  --secondary-black: #2b2c2c;
  --secondary-dark-black: #030237;
  --secondary-dark-grey: #4db647;
  --secondary-light-green: #b9e28c;

  /* Alerts */
  --alert-yellow: #ffce54;
  --alert-red: #e84b4b;

  /* Neutrals */
  --neutral-white: #fefcfd;
  --neutral-grey: #f5f5f5;
  --neutral-light-blue: #e8ecf0;
  --neutral-grey-disabled: #bdbdbd;
  --neutral-input-grey: #efefef;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");



/* Variants  — use as extra classes when you need them */
.input--pill {
  border-radius: 9999px;
}

/* fully pill-shaped */
.input--sm {
  border-radius: 0.5rem;
}

/* tighter radius */


.track-transfer-page {
  position: relative;
  min-height: 100vh;
  font-family: "Urbanist", "Urbanist Fallback: Arial", sans-serif;
  overflow: hidden;
}

/* full‑bleed background based on neutral white */
.page-bg {
  position: fixed;
  inset: 0;
  background: var(--neutral-grey);
  z-index: -3;
}

/* curved-lines overlay */
.bg-pattern {
  position: absolute;
  position: absolute;
  top: 0vh;
  right: -10vh;
  width: 100%;
  height: 120%;
  background: url(./bg-curves.svg) right / cover no-repeat;
  pointer-events: none;
  z-index: -2;
  opacity: 50%;
}

.page-header {
  min-height: 100px;
  font-size: 1.1rem;
  font-weight: 600;
}

.menu-btn {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--primary-dark-blue);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--primary-dark-blue);
  border-radius: 1px;
  transition: 0.3s ease;
}

.menu-icon::before {
  transform: translateY(-6px);
}

.menu-icon::after {
  transform: translateY(4px);
}

.login-btn {
  background: var(--secondary-columbia);
  color: #fff !important;
  padding: 0.55rem 1.5rem;
  border-radius: 30px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.accent {
  color: var(--primary-green);
}

.subtitle {
  color: var(--secondary-dark-grey);
  font-size: 1rem;
}

.track-card {
  width: 500px;
  border: none;
  border-radius: 14px;
  backdrop-filter: blur(6px);

  background: rgba(255, 255, 255, 0.375);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
}

.track-card button {
  border-radius: 100px;
}

.track-card input.form-control {
  border-radius: 10px;
  border: 1px solid var(--neutral-light-blue);
  font-size: 1rem;
  background: #ffffff1b;
}

.track-card .btn-dark {
  background: var(--secondary-dark-black);
  border: none;
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
}

.track-card .btn-outline-dark {
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--secondary-dark-black);
  border: 2px solid var(--secondary-dark-black);
}

/* responsiveness */
@media (max-width: 991.98px) {
  .bg-pattern {
    width: 100%;
    opacity: 0.25;
  }
}

.btn {
  border-radius: 1.25rem;
  text-decoration: none !important;
}


.btn-link:hover {
  text-decoration: none !important;
}


.cta-button {
  background: linear-gradient(135deg, #4db848, #2d6e2e);
  color: white;
  padding: 0.7rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: "Urbanist", "Urbanist Fallback: Arial", sans-serif;
}

.white-btn {
  background: #fff !important;
  color: #4db647 !important;
  font-family: "Urbanist", "Urbanist Fallback: Arial", sans-serif;
}

.contrast-btn {
  background: #030237 !important;
  color: #fff !important;
  font-family: "Urbanist", "Urbanist Fallback: Arial", sans-serif;
}

.bg-secondary{
  background-color: #dbe3e0;
}

/* Transaction Detail Modal Styling */
#transaction-details-modal .card-body .row {
  margin: 0 !important;
}

#transaction-details-modal .card-body .row > div[class*="col-"] {
  border: 0.1em dotted #dbe3e0 !important;
  padding: 0.75rem !important;
}

#transaction-details-modal .card-body .row > div[class*="col-"] p {
  margin-bottom: 0 !important;
}