/*========== HEADER ==========*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--container-color);
    /* box-shadow: 0 1px 0 rgba(22, 8, 43, 0.1); */
    padding: 0 1rem;
    z-index: var(--z-fixed);
  }
  
  .header__container {
        display: flex;
        /* align-items: center;
        height: var(--header-height); */
        flex-direction: row;
  }
  
  .header__img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
  }
  
  .header__logo {
    color: var(--title-color);
    font-weight: var(--font-medium);
    display: none;
  }
  
  .header__search {
    display: flex;
    padding: .40rem .75rem;
    background-color: var(--first-color-light);
    border-radius: .25rem;
  }
  
  .header__input {
    width: 100%;
    border: none;
    outline: none;
    background-color: var(--first-color-light);
  }
  
  .header__input::placeholder {
    font-family: var(--body-font);
    color: var(--text-color);
  }
  
  .header__icon, 
  .header__toggle {
    font-size: 1.2rem;
  }
  
  .header__toggle {
    color: var(--title-color);
    cursor: pointer;
    padding: 16px 16px 9px 16px;
  }
  .bx {
    font-size: 24px;
  }



  html, body, #root {
    height: 100%;
    margin: 0;
    overflow: hidden; /* Prevents page-level scroll */
  }
  