@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,500;0,800;1,900&display=swap');

:root{
  --font-family: 'Poppins', sans-serif;
  --background: #131415;
  --background-orange: #ef6c00;
}

*{
  font-family: var(--font-family);
}

.containerCenter{
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#menuAsistente, #menuCarpeta{
  display: none;
}

.userLogin{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.imgLogin{
  width: 35px;
  height: 35px;
  border-radius: 50px;
}

.labelLogin{
  margin-left: 5px;
  font-size: 0.7rem;
}

.buttonLogout{
  border-radius: 5px;
  border: var(--background-orange);
  background-color: var(--background-orange);
}

.buttonLogout:hover{
  background-color: #fa933e;
  color: white;
}

.buttonLogout svg{
  padding: 0px 2px;
}

#cafe{
  display: flex;
  justify-content: center;
  align-items: center;
}

#cafeA{
  padding-left: 0px!important;
}

#buttonCafe{
  padding: 10px 10px!important;
  text-align: center!important;
  font-size: 0.7rem!important;
}

#buttonCafe:hover{
  color: var(--background-orange)!important;
}

/*Inicio de navbar*/
.sidenav {
  height: 100%;
  width: 160px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #ef6c00;
  overflow-x: hidden;
  padding-top: 20px;
}

.sidenav button {
  padding-left: 0px!important;
  text-decoration: none;
  font-size: 13px!important;
  color: black;
  display: block;
}

.sidenav button:hover {
  color: white!important;
}

.sidenav a {
  padding-left: 18px!important;
  text-decoration: none;
  font-size: 13px!important;
  color: black;
  display: block;
}

.sidenav a:hover {
  color: white!important;
}

.main {
  margin-left: 160px; /* Same as the width of the sidenav */
  font-size: 20px; /* Increased text to enable scrolling */
  padding: 0px 10px!important;
}

.hr{
  margin: 1.4rem;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
  /*Fin de navbar*/

   /*inicio barra superior*/
 .megamenu {
  position: static;
}

.megamenu .dropdown-menu {
  background: none;
  border: none;
  width: 100%;
}

code {
  color: #745eb1;
  background: #fff;
  padding: 0.1rem 0.2rem;
  border-radius: 0.2rem;
}

.text-uppercase {
  letter-spacing: 0.08em;
}
 /*fin barra superior*/

.menuNoBurger .nav-item img{
  margin: 0 2px;
  filter: brightness(1.1);
  mix-blend-mode: multiply;
  transition: 1s;
}

.menuNoBurger .nav-item img:hover{
  scale: 1.1;
}

 .menuBurger{
  display: none;
 }

  @media (min-width: 0px) and (max-width: 1023px){
    .sidenav{
      display: none;
    }
    .main{
      margin-left: 0px; /* Same as the width of the sidenav */
      font-size: 15px; /* Increased text to enable scrolling */
      padding: 0px 10px;
    }
    .menuBurger{
      display: contents;
    }
    .menuNoBurger{
      display: none;
     }
  }