html, body {
  overflow-x: hidden;
}
@media (max-width: 900px) {
  .dashboard, .dashboard__main {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .dashboard__content, .deposit__content, .withdraw-screen, .profile-screen {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box;
  }
}
/* styles.css */
:root {
  --brand-orange: #eb8d13;
  --brand-yellow: #ffb347;
  --brand-dark: #181818;
  --brand-blue: #00d4ff;
  --brand-white: #fff;

  /* Additional UI variables */
  --primary: var(--brand-blue);                /* for toggles and main actions */
  --text-heading: var(--brand-white);          /* heading text */
  --text-heading-dark: var(--brand-dark);          /* heading text */
  --text-light: #cccccc;                       /* secondary text */
  --text-muted: #999999;                       /* subtle info text */
  --bg-secondary: #242424;                     /* background for toggle groups/cards */
  --bg-tertiary: #2f2f2f;                      /* warning/informational bg */
  --warning: var(--brand-yellow);              /* cautionary note color */
}

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.numbers {
  font-family: 'Orbitron', sans-serif;
}

.normal-text {
  font-family: 'Inter', sans-serif;
}

.heading-text {
  font-family: 'Space Grotesk', sans-serif;
}

.gradient-bg-1 {
  background: linear-gradient(to right, #ffffff, #f5f5f5);
}

.no-display {
  display: none;
}

.display {
  display: block;
}

.screen {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  inset: 0;
  transition: opacity 0.3s ease;
}

.screen.visible {
  visibility: visible;
  opacity: 1;
  position: relative;
  pointer-events: auto;
  z-index: 1;
}

.mains {
  display: grid;
  flex: 1;
}
/* Dashboard Home Styles */

/* Root Container */
.dashboard {
  display: flex;
  flex-direction: column;
  height: 100vh;
  /* font-family: 'Segoe UI', sans-serif; */
}

/* Header */
.dashboard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.dashboard__brand {
  font-weight: bold;
  font-size: 1.5rem;
  display: flex;
    align-items: center;
    gap: 1rem;
  img {
    width: 30px;
    height: 30px;
  }
}

.dashboard__nav a {
  margin: 0 1rem;
  color: #333;
  text-decoration: none;
}

.dashboard__search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  .notif {
    cursor: pointer;
    background-color: transparent;
    outline: none;
    border: none;
    img {
      width: 20px;
      height: 20px;
    }
  }
}

.dashboard__search input {
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 999px;
}

/* Main Layout (Sidebar + Content) */
.dashboard__main {
  display: flex;
  flex: 1;
  background-color: #f9f9fb;
}

/* Sidebar */
.dashboard__sidebar {
  width: 200px;
  background-color: transparent;
  padding: 2rem 1rem;
  /* margin: 2rem 1rem; */
  border-radius: 12px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
  height: fit-content;
  align-self: flex-start;
}

.dashboard__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dashboard__menu li {
  margin-bottom: 1rem;
}

.dashboard__menu a {
  color: #555;
  text-decoration: none;
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.dashboard__menu a:hover {
  background-color: #f0f0f0;
}

/* Main Content Area */
.dashboard__content {
  grid-template-columns: 60% 35%;
  gap: 4rem;
  padding: 2rem;
}

.dashboard__col {
  display: flex;
  flex-direction: column;
}

/* Optional distinct styling per column */
.dashboard__col--1 { /* Left Column */ }
.dashboard__col--2 { /* Middle Column */ }
.dashboard__col--3 { /* Right Column */ }

/* Reusable card styling */
.card {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
}
@media (max-width: 900px) {
  .card {
    padding: 1rem;
    font-size: 0.97rem;
    max-width: 100vw;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .card {
    padding: 0.7rem;
    font-size: 0.95rem;
    max-width: 100vw;
    width: 100%;
  }
  .card__graph {
    width: 60% !important;
    min-width: 0;
    overflow-x: auto;
  }
  .portfolio-envelope-flex, .portfolio-content {
    flex-direction: column !important;
    gap: 0.7rem !important;
    .portfolio__list {
      gap: 0.5rem !important;
      margin-block: 1rem !important;
    }
  }
  .portfolio-content, .portfolio__image {
    max-width: 100% !important;
  }
}

/* Current Value Card */
.card--value {
    display: flex;
    justify-content: space-between;
}
.card--value .card__header {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  gap: 0.5rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.card--value .card__value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
}

.card__graph {
    width: 60%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
        width: 80%;
        height: 80%;
    }
}

/* Portfolio Card */
.card--portfolio h3 {
  margin-bottom: 1rem;
}

.portfolio-envelope-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  .portfolio-content {
    max-width: 60%;
    display: flex;
    flex-direction: column;
  }
  .portfolio__image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 10rem;
    /* gap: 0.5rem; */
    max-width: 40%;
    .portfolio-image {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        height: 80%;
        /* border-radius: 12px; */
        overflow: hidden;
        img {
            width: 100%;
            height: 100%;
            /* border-radius: 12px; */
        }
    }
    .chart-desc {
      font-size: 0.8rem;
      color: #666;
      text-align: center;
      margin-top: 1rem;
      font-style: italic;
    }
   }
}

.portfolio__list {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  overflow-x: scroll;
}

.portfolio__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 50%;
  flex: 1;
}


.portfolio__icon {
  font-size: 2rem;
  width: 30%;
}

.portfolio__info strong {
  display: block;
  color: #000;
}

.portfolio__info {
  font-size: 0.9rem;
  color: #666;
}

/* Transactions Card */
.card--transactions h3 {
  margin-bottom: 1rem;
}

.transactions__list {
  display: flex;
  flex-direction: column;
}

.transaction {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.transaction__asset {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.transaction__icon {
  width: 24px;
  height: 24px;
}

.transaction__name {
  font-weight: 500;
  color: #333;
}

.transaction__amount {
  font-weight: 500;
  color: #000;
}

.transaction__date {
  font-size: 0.85rem;
  color: #777;
}

/* Divider */
.transactions__list hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 0;
}

/* Quick Actions Card */
.card--actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  color: #fff;
  transition: background-color 0.2s ease;
}

.row-reverse {
  flex-direction: row-reverse !important;
}

.little-details {
  display: flex;
  justify-content: space-around;
  width: 100%;
  .little-details-img {
    width: 40%;
  }
  .little-details-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    h3 {
      font-size: 1rem;
      text-align: center;
    }
    p {
      font-size: 0.8rem;
      font-style: italic;
      text-align: center;
    }
  }
}

.action-btn--deposit {
  background-color: #28a745;
}

.action-btn--withdraw {
  background-color: #dc3545;
}

.action-btn:hover {
  opacity: 0.9;
}

.action-icon {
  font-size: 1.2rem;
}

/* USD Balance Card */
.card--balance h3 {
  margin-bottom: 0.5rem;
}

.balance__amount {
  font-size: 1.75rem;
  font-weight: bold;
  color: #000;
}

/* Get Started Card */
.card--getstarted {
  background: url('../resources/img/an-astronaut-orbitin.png') no-repeat center;
  background-size: cover;
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  height: 24rem;
  display: flex;
  align-items: flex-start;
}

.getstarted__content {
  max-width: 250px;
}

.getstarted__content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.getstarted__content p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.getstarted__btn {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.getstarted__btn:hover {
  background-color: #fff;
}


.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color: #444;
}

.nav-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 50%;
  background-color: #e9f5ff;
  img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }
}

.nav-item:hover {
  background-color: #f2f2f2;
}

.nav-item.active {
    background-color: var(--brand-orange);
    color: var(--brand-white);
    font-weight: bold;
}

.nav-item.active .nav-icon {
  color: #007bff;
}

.sidebar__main,
.sidebar__utils {
  margin-bottom: 2rem;
  padding: 1rem;
}

.sidebar__main ul,
.sidebar__utils ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.header-intro {
  margin-bottom: 1.5rem;
}


ul {
    padding-inline-start: 0;
}

/* Dashboard Home Styles */

/* Deposit styles */

.deposit__content {
  grid-template-columns: 45% 45%;
  gap: 2rem;
  padding: 2rem;
}

.deposit-1 {
  display: flex;
  justify-content: center;
}

.card--deposit {
  width: 100%;
  max-width: 600px;
  padding: 2rem;
  border-radius: 1rem;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.deposit__header {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab {
  padding: 0.75rem 1.5rem;
  border: none;
  background: #f0f0f0;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 500;
}

.tab.active {
  background: #7c3aed;
  color: white;
}

.deposit__form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}

.deposit__form select,
.deposit__form input {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.balance-row {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.tips {
  margin-top: 2rem;
  background: #f9fafb;
  border-left: 4px solid #10b981;
  padding: 1rem;
  border-radius: 0.5rem;
}

.tips ul {
  margin: 0;
  padding-left: 1rem;
  list-style: disc;
  font-size: 0.9rem;
  color: #444;
}

.tips a {
  color: #7c3aed;
  text-decoration: underline;
}

.deposit-btn {
  margin-top: 2rem;
  width: 100%;
  padding: 0.9rem;
  background-color: #7c3aed;
  color: white;
  border: none;
  font-weight: 600;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 8rem;
}
.deposit-2 {
    display: flex;
    justify-content: center;
}

.card--deposit-2 {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    /* border-radius: 1rem; */
    background: transparent;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    /* gap: 6rem; */
}

.deposit-heading-2 {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    /* padding: 1rem; */
    gap: 1rem;
    img {
        width: 20px;
        height: 20px;
        object-fit: contain;
        margin-block-start: 0.25rem;
    }
}

.deposit__network-title {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--text-heading-dark);
  margin-block: 0;
}

.deposit__toggle {
  position: relative;
  display: flex;
  gap: 0.5rem;
  background-color: var(--text-light);
  padding: 0.7rem;
  border-radius: 1rem;
  overflow: hidden;
}

.deposit__toggle-btn {
  flex: 1;
  padding: 0.4rem 1rem;
  background: none;
  border: none;
  border-radius: 2rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--brand-white);
  z-index: 1;
  transition: color 0.2s ease;
}

.deposit__toggle-btn.active {
  color: #fff;
}

.deposit__toggle-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(25% - 8px); /* Assuming 4 buttons equally spaced */
  height: calc(100% - 8px);
  background-color: var(--brand-yellow);
  border-radius: 1rem;
  z-index: 0;
  transition: left 0.3s ease;
}

/* JS will move the indicator left based on index */

.deposit__info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-block: 1.5rem;
  .deposit__info-icon > img {
    width: 20px;
    height: auto;
  }
}

.deposit__qr-label {
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1rem;
  color: var(--text-heading-dark);
}

.deposit__qr img {
  width: 100%;
  max-width: 200px;
  margin-top: 0.5rem;
  border-radius: 1rem;
}

.deposit__warning {
  font-size: 0.875rem;
  background-color: var(--text-light);
  padding: 1rem;
  border-radius: 0.75rem;
  color: var(--brand-white);
}

.deposit__warning strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: var(--warning);
}

.coin-address-row {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  align-items: baseline;
  button {
    max-height: 1.2rem;
    padding: 0.25rem 1.5rem;
    cursor: pointer;
    border-radius: 1rem;
    outline: none;
    border: none;
    box-sizing: content-box;
    background-color: var(--brand-orange);
    color: var(--brand-white);
  }
}

.crypto, .fiat {
  display: none;
}

.crypto.tab__active, .fiat.tab__active {
  display: block;
}

.bank-details-text {
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--brand-dark);
  text-align: center;
  margin-block: 2rem;
}

.fiat>img {
  height: 10rem;
  width: 10rem;
  margin-left: 8rem;
}

.fiat>button {
  padding: 0.9rem;
  width: 100%;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--brand-white);
  background-color: #7c3aed;
  margin-top: 8rem;
}


/* End of Deposit tab Styles */

/* -------------------------------------------------------- */

/* Start of withdraw tab styles */

.withdraw-screen {
  grid-template-columns: 45% 45%;
  gap: 2rem;
  padding: 2rem;
}

/* Wallet Balance Card */
.withdraw__balance-card {
  /* display: flex; */
  /* flex-direction: column; */
  /* gap: 0.5rem; */
  display: grid;
  grid-template-columns: repeat(2,1fr);
  flex: 1;
  padding: 1.5rem;
  background-color: var(--brand-white);
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  /* w-b-c-1 {} */
  w-b-c-2 {
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    img {
        width: 80%;
        height: 80%;
        object-fit: contain;
    }
  }
}

.withdraw__label {
  font-size: 0.9rem;
  color: #777;
}

.withdraw__amount {
  font-size: 2rem;
  font-weight: bold;
  color: var(--brand-dark);
}

.withdraw__btc {
  font-size: 0.9rem;
  color: var(--brand-orange);
}


/* Amount Input Card */
.withdraw__amount-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--brand-white);
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.withdraw__input-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  color: var(--brand-dark);
}

.withdraw__input-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background: #f9f9f9;
}

/* Toggle button between USD and BTC */
.withdraw__toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  background: var(--brand-orange);
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: background 0.2s ease;
  z-index: 1;
}

.withdraw__toggle:hover {
  background: var(--brand-yellow);
}


/* Wallet Address Card */
.withdraw__address-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: var(--brand-white);
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.withdraw__warning {
  font-size: 0.85rem;
  color: #b83232;
  background-color: #ffe9e9;
  padding: 0.75rem 1rem;
  border-radius: 8px;
}


/* Continue Button */
.withdraw__button-card {
  padding: 1rem;
  background-color: transparent;
}

.withdraw__continue-btn {
  width: 100%;
  padding: 0.9rem 1rem;
  background-color: var(--brand-dark);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.withdraw__continue-btn:hover {
  background-color: var(--brand-orange);
}

/* End of withdraw tab styles */


/* -------------------------------------------------------- */

/* Start of Profile Page Styles */

/* Profile Summary Card */
.profile-screen {
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
}

.profile__summary-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.profile__avatar-wrapper {
  position: relative;
  width: 100px;
  margin: 0 auto 1rem;
}

.profile__avatar {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--brand-orange);
}

.profile__change-pic {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--brand-orange);
  color: white;
  border: none;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  border-radius: 6px;
  cursor: pointer;
}

.profile__name {
  font-size: 1.25rem;
  margin-top: 0.5rem;
  font-weight: 600;
}

.profile__email {
  font-size: 0.9rem;
  color: #666;
}

.profile__stats {
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #555;
}

.profile__stats div h4 {
  margin: 0;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--brand-dark);
}

/* Profile Form */
.profile__form-card {
  padding: 2rem;
}

.profile__form-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.profile__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form__group {
  display: flex;
  flex-direction: column;
}

.form__group__row {
  display: flex;
  justify-content: space-between;
}

.w-40 {
  max-width: 40%;
  width: 40%;
}

.w-70 {
  max-width: 70%;
  width: 70%;
}

.w-30 {
  max-width: 30%;
  width: 30%;
}

.form__group label {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--brand-dark);
}

.form__group input {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  font-size: 1rem;
}

.profile__submit-btn {
  margin-top: 1.5rem;
  padding: 0.85rem;
  border: none;
  background-color: var(--brand-orange);
  color: white;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.profile__submit-btn:hover {
  background-color: var(--brand-yellow);
}


/* End of Profile Page Styles */

/* ---------------------------------------------- */

/* Media query styles */

@media (max-width: 768px) {
  main {
    grid-template-columns: 1fr !important;
    /* gap: 2rem; */
    /* padding-bottom: 10rem; */ /* add spacing for bottom nav */
    margin-bottom: 6rem;
  }

  .dashboard__content, .deposit__content, .withdraw-screen, .profile-screen {
    padding: 0.8rem;
  }

  section {
    width: 100%;
  }
}

@media (max-width: 768px) {
  aside {
    position: fixed;
    bottom: 10px;
    left: 10px;
    /* right: 1rem; */
    z-index: 999;
    background: var(--brand-white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 1rem;
    padding: 0;
    display: flex;
    /* justify-content: space-between; */
    gap: 1rem;
    align-items: center;

    /* hide scrollable sidebar content */
    flex-direction: row;
    height: auto;
    width: auto;
  }

  .dashboard__sidebar {
    width: 100%;
    display: flex;
    padding: 0;
    .sidebar__main {
      width: 60%;
      margin-bottom: 0;
      padding: 0.4rem;
    }
    .sidebar__utils {
      width: 30%;
      margin-bottom: 0;
      padding: 0.4rem;
    }
    .sidebar__main ul,
    .sidebar__utils ul {
      flex-direction: row;
      gap: 0.5rem;
      justify-content: space-between;
    }
  }

  .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.55rem;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    .nav-icon {
      padding: 5px;
    }
  }

  .sidebar .nav-item i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 768px) {
  header .dashboard__nav,
  header .dashboard__search > input {
    display: none !important;
  }

  header {
    justify-content: space-between;
    padding: 1rem;
  }
}




