.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 1rem;
    column-gap:0.3rem;
    z-index: 20;
    border-bottom: 2px solid rgba(225, 220, 220, 0.746);
}

.navleft {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
}

.navright {
  display: flex;
    align-items: center;
    column-gap: 1.5rem
}

.navcentre {
    display: flex;
    background-color: #eff3f6;
    border: 2px solid #eff3f6;
    border-radius: 0.5rem;
    min-width: 40vw;
    z-index: 1;
}

.navcentre:focus-within {
    background-color: white;
    border: 1px solid #eff3f6;
    box-shadow: 0 0 5px grey;
    min-width: 40vw;
    z-index: 1;
}

.searchiconbtn {
    background-color: inherit;
    border-radius:50%;
    border: none;
    cursor: pointer;
}


.searchiconbtn:hover {
    background-color: #eff3f6;
}


.userdescription {
  position: absolute;
  background-color: skyblue;
  top: 38px;
  left: -116px;
  border-radius: 5px;
  padding: 5px;
}

/* Input Field */

.search-input {
    color: black;
    background-color: #eff3f6;
    border: none;
    border-radius: 0.5rem;
    padding: 0.2rem;
    width: 100%;
    font-size:1rem;
    margin: 0.6rem;
    font-weight: 500;
}

.search-input::placeholder {
    color: grey;
    font-weight: 500;
}

.search-input:focus {
    background-color: white;
    outline: none;
}


/* //Navmenu CSS */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap');

.nav {
  /* position: fixed;
  left: -2em; */
  /* z-index: 1000; */
   position: relative;
  left: -2em; 
   z-index: 1000; 
  transform-style: preserve-3d;
  /* perspective: 1000px; */
}

.icon {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 990;
  height: 100%;
}

.icon li {
  list-style-type: none;
}
.icon a {
  display: block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  font-size: 1.6em;
  color: #999999;
}

.icon a:hover {
  background-color: #eff3f6;
 }

 .nav:hover .text,.togglemenu .text{
  transform: rotateY(0deg);
}

.nav:hover .text,.togglemenu .text{
  transform: rotateY(0deg);
}


.text {
  position: absolute; 
   left: 63px;
  box-sizing: border-box;
  top: 0;
  z-index: 980;
  height: 100%;
  transition: transform 0.24s linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform-origin: left;
  transform: perspective(1000px) rotateY(90deg);
}

.noteshover,.trashhover,.editlabelshover,.archiveshover,.t-noteshover,.t-trashhover,.t-editlabelshover,.t-archiveshover {
  background-color:#eff3f6;
}

.text li {
  width: 100%;
}

.text a {
  display: block;
  width: 200px;
  height: 64px;
  line-height: 64px;
  text-indent: 1em;
  font-size: 1.4em;
  text-decoration: none;
  color: black;
}


.text a:hover {
  color: black;
  transform: translateX(-14px);
  transition: transform 0.30s linear;
  background-color: #eff3f6;
}



@media screen and (max-width: 450px) {
  h1 {
    font-size: 7.5vw;
  }
}

@media screen and (max-width:800px) {
  .text ul {
    background-color: aliceblue;
      border-radius: 5px;
      margin-left: -25px;
  }
}