/* ============ GATE design tokens ============ */
:root {
  --primary: #1c3869;
  --primary-700: #122748;
  --primary-100: #eef1f8;
  --accent: #ef9e20;
  --accent-600: #d6870b;
  --section-bg: #F8F9FB;
  --text: #1F2937;
  --text-secondary: #6B7280;
  --shadow-soft: 0 20px 45px -22px rgba(28, 56, 105, .22);
  --shadow-card: 0 12px 30px -16px rgba(28, 56, 105, .16);
  --ease: cubic-bezier(.22, .61, .36, 1);

  /* map into bootstrap's own variables so bs components inherit the palette */
  --bs-primary: #1c3869;
  --bs-primary-rgb: 28, 56, 105;
  --bs-body-color: #1F2937;
  --bs-body-font-family: 'Cairo', sans-serif;
  --bs-border-radius: 12px;
  --bs-border-radius-lg: 16px;
}

body {
  font-family: 'Cairo', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
  color: var(--primary);
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.section-bg {
  background: var(--section-bg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-100);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 620px;
  line-height: 1.9;
}

/* ---------- buttons ---------- */
.btn {
  border-radius: 12px;
  font-weight: 600;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.btn:active {
  transform: scale(.96);
}

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(239, 158, 32, .55);
}

.btn-accent:hover {
  background: var(--accent-600);
  border-color: var(--accent-600);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-primary {
  --bs-btn-color: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-100);
  --bs-btn-hover-color: var(--primary);
  --bs-btn-hover-border-color: var(--primary);
}

.btn-outline-primary:hover {
  transform: translateY(-2px);
}

.btn-outline-light:hover {
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 30px;
  font-size: 17px;
}

/* ---------- arch signature element ---------- */
.arch-icon {
  width: 64px;
  height: 64px;
  border-radius: 38px 38px 10px 10px;
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 22px;
  position: relative;
}

.arch-icon::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 32px 32px 8px 8px;
  border: 1.5px dashed rgba(28, 56, 105, .18);
}

.arch-icon svg {
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 1;
}

.arch-divider-svg {
  display: block;
  width: 100%;
  height: 46px;
}

/* ---------- navbar ---------- */
.navbar-gate {
  background: #fff;
  transition: box-shadow .3s var(--ease), padding .3s var(--ease);
  padding-top: 16px;
  padding-bottom: 16px;
}

.navbar-gate.scrolled {
  box-shadow: 0 8px 30px -18px rgba(28, 56, 105, .35);
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-gate .nav-link {
  font-weight: 600;
  color: var(--text);
  position: relative;
}

.navbar-gate .nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .25s var(--ease);
}

.navbar-gate .nav-link:hover::after {
  width: 100%;
}

.navbar-gate .navbar-brand img {
  height: 10vh;
  width: auto;
}

/* ---------- hero ---------- */
.hero {
  padding: 0px 0 40px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.35;
  letter-spacing: -.5px;
}

.hero p.lead {
  font-size: 18px;
  line-height: 2;
  color: var(--text-secondary);
  font-weight: 400;
}

.hero-visual svg {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(28, 56, 105, .15));
}

/* ---------- cards ---------- */
.why-card,
.teacher-card {
  border: 1px solid #EFF1F6;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  height: 100%;
}

.why-card:hover,
.teacher-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px -20px rgba(28, 56, 105, .28);
}

.why-card h3 {
  font-size: 19px;
}

.why-card p,
.teacher-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.teacher-card {
  text-align: center;
}

.teacher-avatar {
  width: 88px;
  height: 88px;
  border-radius: 44px 44px 14px 14px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  background: linear-gradient(150deg, var(--primary), #2c4d86);
}

.teacher-card h3 {
  font-size: 17px;
}

.teacher-card .subject {
  color: var(--accent);
  font-weight: 700;
  font-size: 13.5px;
  margin-top: 4px;
}

.teacher-card .exp {
  color: var(--text-secondary);
  font-size: 13px;
  margin-top: 8px;
}

.teacher-card p.desc {
  margin-top: 12px;
  min-height: 64px;
}

/* ---------- CTA ---------- */
.cta-box {
  background: linear-gradient(135deg, var(--primary), #24406f);
  border-radius: 28px;
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .06) 0, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(239, 158, 32, .12) 0, transparent 45%);
}

.cta-box h2 {
  color: #fff;
  font-size: clamp(24px, 3.6vw, 34px);
  line-height: 1.4;
  position: relative;
}

.cta-box .btn {
  position: relative;
  margin-top: 14px;
}

/* ---------- footer ---------- */
footer.site-footer {
  background: var(--primary-700);
  color: #cdd7e8;
  padding: 64px 0 28px;
}

footer.site-footer h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}

footer.site-footer img {
  height: 10vh;
  filter: brightness(0) invert(1);
  opacity: .95;
}

footer.site-footer p,
footer.site-footer a {
  font-size: 13.5px;
  line-height: 1.9;
  color: #b7c2d8;
}

footer.site-footer ul li {
  margin-bottom: 10px;
  list-style: none;
}

footer.site-footer ul {
  padding: 0;
}

footer.site-footer a:hover {
  color: #fff;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: .2s;
}

.socials a:hover {
  background: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 48px;
  padding-top: 22px;
  text-align: center;
  font-size: 13px;
  color: #8fa0bf;
}

/* ---------- auth pages ---------- */
.auth-wrap {
  min-height: calc(100vh - 78px);
  background: var(--section-bg);
  padding: 60px 0;
}

.auth-shell {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.auth-illustration {
  background: linear-gradient(150deg, var(--primary), #26426f);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 100%;
}

.auth-illustration svg {
  width: 100%;
  max-width: 260px;
}

.auth-form-side {
  padding: 56px 48px;
}

@media (max-width:767.98px) {
  .auth-form-side {
    padding: 40px 26px;
  }
}

.auth-title {
  font-size: 26px;
}

.auth-sub {
  color: var(--text-secondary);
  font-size: 14.5px;
  margin-top: 8px;
  margin-bottom: 32px;
}

.form-label {
  font-weight: 600;
  font-size: 14px;
}

.form-control {
  border-radius: 12px;
  border: 1.5px solid #E2E6EE;
  padding: 12px 16px;
  font-size: 14.5px;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(28, 56, 105, .1);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.link-accent {
  color: var(--primary);
  font-weight: 600;
  font-size: 13.5px;
}

.link-accent:hover {
  color: var(--accent);
}

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0;
  color: var(--text-secondary);
  font-size: 13px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #E2E6EE;
}

.btn-google {
  border-radius: 12px;
  border: 1.5px solid #E2E6EE;
  padding: 12px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
  transition: .2s;
}

.btn-google:hover {
  background: #F8F9FB;
}

.bottom-line {
  text-align: center;
  margin-top: 26px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* ================= layout shell ================= */
.dash-shell {
  display: flex;
  min-height: 100vh;
}

/* ---------- sidebar ---------- */
.sidebar {
  width: 264px;
  flex-shrink: 0;
  background: #fff;
  border-left: 1px solid #EEF0F4;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 40;
  transition: transform .3s var(--ease);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px;
}

.sidebar-brand .brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-brand img {
  height: 38px;
  width: auto;
}

.sidebar-brand .brand-name {
  font-weight: 800;
  font-size: 18px;
  color: var(--primary);
}

.sidebar-close {
  display: none;
  border: none;
  background: none;
  color: var(--text-secondary);
}

.sidebar-nav {
  flex: 1;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-secondary);
  transition: background .2s, color .2s;
}

.sidebar-nav .nav-link:hover {
  background: #F8F9FB;
}

.sidebar-nav .nav-link.active {
  background: var(--primary-100);
  color: var(--primary);
}

.sidebar-nav .nav-link svg {
  flex-shrink: 0;
}

.sidebar-logout {
  padding: 12px;
}

.sidebar-logout .nav-link {
  color: #c0392b;
}

.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .3);
  z-index: 35;
}

@media (max-width:991.98px) {
  .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    transform: translateX(100%);
  }

  .sidebar.show {
    transform: translateX(0);
  }

  .sidebar-close {
    display: block;
  }

  .sidebar-backdrop.show {
    display: block;
  }
}

/* ---------- topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #EEF0F4;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-toggle {
  display: none;
  border: none;
  background: none;
  color: var(--text);
}

@media (max-width:991.98px) {
  .sidebar-toggle {
    display: flex;
  }
}

.topbar-search {
  position: relative;
  flex: 1;
  max-width: 380px;
}

.topbar-search svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  color: var(--text-secondary);
  pointer-events: none;
}

.topbar-search input {
  width: 100%;
  border: 1px solid #EEF0F4;
  background: #F8F9FB;
  border-radius: 12px;
  padding: 10px 42px 10px 16px;
  font-size: 14px;
  font-family: 'Cairo', sans-serif;
  outline: none;
  transition: .2s;
}

.topbar-search input:focus {
  background: #fff;
  border-color: var(--primary);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--section-bg);
  border: none;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn .dot {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.profile-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: none;
  padding: 2px;
}

.profile-avatar {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}

.profile-name {
  font-size: 14px;
  font-weight: 600;
}

@media (max-width:575.98px) {
  .profile-name {
    display: none;
  }
}

.dropdown-menu {
  border-radius: 16px;
  border: 1px solid #EEF0F4;
  box-shadow: 0 20px 40px -20px rgba(28, 56, 105, .25);
  padding: 8px;
  font-family: 'Cairo', sans-serif;
}

.dropdown-menu .dropdown-header {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}

.dropdown-item {
  border-radius: 10px;
  font-size: 13.5px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-item:active,
.dropdown-item:hover {
  background: #F8F9FB;
}

/* ---------- content area ---------- */
.dash-content {
  flex: 1;
  min-width: 0;
  padding: 24px 20px;
}

@media (min-width:576px) {
  .dash-content {
    padding: 28px;
  }
}

@media (min-width:992px) {
  .dash-content {
    padding: 36px 40px;
  }
}

.eyebrow-hi {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}

.eyebrow-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ---------- breadcrumb ---------- */
.gate-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.gate-breadcrumb a {
  font-weight: 600;
}

.gate-breadcrumb a:hover {
  text-decoration: underline;
}

.gate-breadcrumb .current {
  font-weight: 700;
  color: var(--text);
}

.gate-breadcrumb svg {
  opacity: .5;
}

/* ---------- cards ---------- */
.gcard {
  background: #fff;
  border: 1px solid #EFF1F6;
  border-radius: 16px;
  padding: 20px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  height: 100%;
}

.gcard.clickable {
  cursor: pointer;
}

.gcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -22px rgba(28, 56, 105, .25);
}

.gcard.locked {
  opacity: .55;
  cursor: not-allowed;
}

.gcard.locked:hover {
  transform: none;
  box-shadow: none;
}

.gcard-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-100);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.gcard h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.gcard .meta {
  font-size: 12.5px;
  color: var(--text-secondary);
  margin: 4px 0 14px;
}

.progress-track {
  width: 100%;
  height: 8px;
  border-radius: 99px;
  background: #F1F2F6;
  overflow: hidden;
}

.progress-track.thin {
  height: 5px;
}

.progress-fill {
  height: 100%;
  border-radius: 99px;
  background: var(--accent);
  transition: width .5s var(--ease);
}

.badge-pct {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-600);
}

.locked-tag {
  font-size: 10.5px;
  font-weight: 700;
  background: var(--section-bg);
  color: var(--text-secondary);
  padding: 4px 9px;
  border-radius: 99px;
}

/* ---------- status badges ---------- */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
}

.status-badge.done {
  color: #1a7a4c;
  background: #e8f7ef;
}

.status-badge.watching {
  color: var(--accent-600);
  background: var(--accent-100);
}

/* ---------- subject/month grid ---------- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width:991.98px) {

  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:575.98px) {

  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* ---------- lesson list ---------- */
.lesson-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #EFF1F6;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  transition: box-shadow .25s var(--ease);
}

.lesson-row:hover {
  box-shadow: 0 18px 36px -20px rgba(28, 56, 105, .25);
}

.lesson-thumb {
  width: 110px;
  height: 72px;
  border-radius: 12px;
  background: var(--primary-100);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width:575.98px) {
  .lesson-thumb {
    width: 76px;
    height: 56px;
  }
}

.lesson-info {
  flex: 1;
  min-width: 0;
}

.lesson-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lesson-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lesson-meta .duration {
  font-size: 12.5px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---------- empty state ---------- */
.empty-state {
  background: #fff;
  border: 1px solid #EFF1F6;
  border-radius: 16px;
  text-align: center;
  padding: 64px 24px;
}

.empty-state .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--primary-100);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.empty-state p.title {
  font-weight: 700;
  font-size: 15.5px;
  margin: 0;
}

.empty-state p.subtitle {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ---------- buttons ---------- */
.btn-gate-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 700;
}

.btn-gate-accent:hover {
  background: var(--accent-600);
  border-color: var(--accent-600);
  color: #fff;
}

.btn-gate-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
}

.btn-gate-outline:hover {
  background: var(--primary-100);
  color: var(--primary);
}

.btn-gate-ghost {
  background: var(--primary-100);
  border-color: var(--primary-100);
  color: var(--primary);
  font-weight: 700;
}

.btn-gate-ghost:hover {
  background: #e3e8f4;
  color: var(--primary);
}

.btn-gate-dark {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 700;
}

.btn-gate-dark:hover {
  background: var(--primary-700);
  border-color: var(--primary-700);
  color: #fff;
}

/* ---------- player ---------- */
.player-video {
  background: #000;
  border-radius: 16px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.player-video svg {
  color: #fff;
  opacity: .85;
}

.player-duration-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 11.5px;
  padding: 4px 9px;
  border-radius: 8px;
}

.teacher-chip {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12.5px;
}

.nav-tabs.gate-tabs {
  border-bottom: 1px solid #EFF1F6;
}

.nav-tabs.gate-tabs .nav-link {
  border: none;
  border-bottom: 2.5px solid transparent;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 16px;
}

.nav-tabs.gate-tabs .nav-link.active {
  color: var(--primary);
  border-color: var(--accent);
  background: none;
}

.file-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #EFF1F6;
  border-radius: 12px;
  padding: 13px 14px;
  margin-bottom: 8px;
  font-size: 13.5px;
  font-weight: 600;
}

.playlist-panel {
  background: #fff;
  border: 1px solid #EFF1F6;
  border-radius: 16px;
  padding: 8px;
}

.playlist-panel .heading {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 10px 12px;
}

.playlist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  width: 100%;
  text-align: right;
  border: none;
  background: none;
}

.playlist-item.active {
  background: var(--primary-100);
  color: var(--primary);
}

.playlist-item.disabled {
  opacity: .45;
  cursor: not-allowed;
}

.playlist-item span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

textarea.notes-box {
  width: 100%;
  min-height: 140px;
  border: 1px solid #EFF1F6;
  border-radius: 12px;
  padding: 14px;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  resize: vertical;
  outline: none;
}

textarea.notes-box:focus {
  border-color: var(--primary);
}