#main-body,
#main-body-navbar {
  display: flex;
  align-items: center;
  align-content: center;
}

#dash-body {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  height: calc(100% - 64px);
}

#main-body {
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: flex-start;
}

#main-body-navbar {
  width: 50%;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

#main-body-navbar-button-div {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-content: space-evenly;
}

#clip {
  width: 90%;
  height: 70vh;
  background-color: #222222;
  border: none;
  border-radius: 0.1rem;
  border: transparent 1px solid;
  transition: 0.5s;
  outline: none;
  color: white;
  font-family: monospace;
  padding: 2rem;
  font-size: 1rem;
}

#clip:focus {
  background-color: #181818;
  border-radius: 0.5rem;
  border: var(--clr-purple) 1px solid;
}

#navbar-left {
  display: flex;
  flex-direction: row;
}

#bottomFooter {
  min-width: 90%;
  height: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#wordcount-div,
#right-footer-div {
  color: white;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
}

#right-footer-div {
  display: flex;
  gap: 1rem;
}

#wordcount,
#charcount {
  font-family: monospace;
  background-color: #181818;
  padding: 0.1rem 0.6rem;
  border-radius: 0.3rem;
}

#refreshIndicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.3rem;
}

#syncSymbol {
  width: 1.1rem;
  height: 1.1rem;
  background-position: center;
  background-size: cover;
}

#main-navbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 47.5rem) {
  #main-body-navbar {
    margin: 0.5rem 0;
    width: 90%;
  }

  #main-body {
    width: 100%;
  }

  #main-navbar-left {
    padding: .5rem 0;
    display: flex;
    align-items: center;
  }

  #right-footer-div {
    align-items: center;
  }

  #bottomFooter {
    padding: .5rem 0;
    width: 100%;
    font-size: 0.7rem;
  }

  #edit-spinner {
    display: none;
  }

  nav {
    height: 40px;
  }

  #clip {
    width: 80%;
    height: 60vh;
    font-size: 0.9rem;
  }

  #bottomFooter {
    width: 80%;
    height: 1rem;
  }
}
