/* .navbar-toggler {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    
    width: 30px;
    height: 20px;
    background: transparent;
    transform: translateX(4rem);
    border: none;
    cursor: pointer;
    padding: 0;
    box-sizing: border-box;
    z-index: 1001;
}

@media only screen and (min-width: 767px) {
 .navbar-toggler{
  display: none;
 }
}

.navbar-toggler .hamburger-line {
    width: 80%;
    height: 2px;
    background-color: #000;
    border-radius: 10px;
    transition: all 0.3s linear;
    transform-origin: 1px;
}

@media (max-width: 400px) {
 .navbar-toggler{
  transform: translateX(2rem);
 }
}
@media only screen and (min-width: 769px) {
 .hamburger-line{
  display: none;
 }
}
/* The styles that create the "X" */
.navbar-toggler.open .hamburger-line:nth-child(1) {
    transform: rotate(35deg);
    background-color: lightgrey;
}
@media only screen and (min-width: 1024px) {
 .hamburger-line:nth-child(1){
  display: none;
 }
}

.navbar-toggler.open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
    background-color: lightgrey;
} */

.main-sidebar{
 background-color: #4B33FF;
 position: sticky;
 padding-right: 2rem;
 max-height: 100vh;
 display: none;
}


 .main-sidebar.active {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  top: 0;
  right: 0;
  width: 200px;
  height: 90%;
  background-color: #4B33FF;
  z-index: 1000;
  padding: 5rem 2rem 2rem 2rem;
  overflow-y: auto;
  transition: transform 0.3s ease-in-out;
transform: translateX(10); 
 }
 
 .sidebar-links {
 list-style: none;
 padding: 0;
 margin: 0;
}

.sidebar-links li {
 margin-bottom: 1rem;
}

.sidebar-links a {
 display: block;
 padding: 0.75rem 1rem;
 color: white;
 font-weight: bold;
 text-decoration: none;
 border-radius: 5px;
 transition: background-color 0.2s ease;
}

.switch-button {
 background-color: red;
 margin-bottom: 2rem;
 margin-top: 0.3rem;
 position: sticky;
}

#auth-nav-bar{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.auth-navbar-swith{
    border: solid 1px #4B33FF;
    background-color: #fff;   
}

#auth-navbar-swith{
    color: #4B33FF;
    border-radius: 25px;
}

.sidebar-links a:hover {
 background-color: rgba(255, 255, 255, 0.2);
}
