@import url(./styles/info-bodega.css);
@import url(./styles/publicar.css);
@import url(./styles/datos.user.css);
@import url(./styles/perfil.css);
body {
  margin: 0;
  padding: 0;
  border: none;
  background-color: #f5f5f5;
}
html, body {
  height: 100%;
  margin: 0;
}

.content {
  min-height: calc(100% - 50px); /* Resta la altura del footer */
}
/* header movement  */

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: top 0.3s;
}

.fixed-header.scrolled {
  top: -80px; /* Ajusta la altura del header cuando se desplaza hacia arriba */
}

.footer {
  height: 50px; /* Establece la altura del footer */
  background-color: #f2f2f2;
  text-align: center;
  padding: 10px;
  bottom: 0;
}

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

header {
  background-color: #2181ee;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Roboto', sans-serif; /* Aplica la fuente Roboto al encabezado */
  
}
/* header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #8a8a8a;
  z-index: 999; 
} */
.custom-logo {
  display: flex;
  align-items: center;
  padding-left: 150px;
}

.custom-logo img {
  width: 160px; /* Ajusta el ancho según tus necesidades */
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end; /* Alinea los enlaces hacia la derecha */
  padding-right: 150px;
}

nav ul li {
  margin-right: 15px; /* Ajusta el margen derecho según tus necesidades */
}

nav ul li:last-child {
  margin-right: 0;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease-in-out;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

nav ul li a:hover {
  color: #666; 
}

nav ul li a:hover::after {
  transform: scaleX(1); 
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    margin-bottom: 10px;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin-right: 0;
    margin-bottom: 10px;
  }
}


/* Estilos para el footer */
.footer {
  background-color:  #2181ee;
  padding: 10px;
  font-family: 'Roboto', sans-serif;
}

.footer p {
  margin-bottom: 0;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* aside css */
.custom-b{
  background-color: #ffffff;
  margin-top: 15px;
  border-radius: 20px;
  box-shadow: 6px   #999999;
  border: solid rgb(204, 204, 204);
  margin-bottom: 30px;

}
/* .custom-b{
  height: 160vh;
} */
aside {
  background-color: #fffcfc;
  padding: 20px;
  height: 100vh; 
  overflow-y: auto; 
  padding-top: 55px;
  margin-top: 20px;
  border-right: solid #2181ee;
  
}
.titulo-aside {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 60px; 
}

aside.col-3 {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  background-color: #f5f5f5;
  padding: 20px;
}

aside h2 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px;
}

aside ul {
  list-style-type: none;
  padding-left: 0;
}

aside ul li {
  margin-bottom: 5px;
}

aside input[type="text"] {
  width: 80px;
}

aside strong {
  cursor: pointer;
  display: block;
}

aside ul ul {
  margin-left: 10px;
  display: none;
}

aside ul ul li {
  margin-bottom: 0;
}

aside ul ul input[type="text"] {
  width: 70px;
}

aside ul ul.show {
  display: block;
}

/* search css */

.search {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 20px;
  background-color: #ffffff;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); 
  border-radius: 5px; 
  padding-top: 10px;
}


.search form {
  display: flex;
  align-items: center;
}

.search form .col-3 {
  flex-basis: 25%;
  margin-bottom: 10px;
}

.search select.form-select,
.search input.form-control,
.search button.btn-primary {
  width: 180px;
  height: 40px;
}

.search select.form-select {
  padding: 5px;
  border-radius: 5px;
  border: none;
  background-color: #fff;
  color: #333;
}

.search input.form-control {
  padding: 5px;
  border-radius: 5px;
  border: none;
  background-color: #fff;
  color: #333;
}
.search select.form-select,
.search input.form-control {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc; 
  background-color: #fff;
  color: #333;
}
.search button.btn-primary {
  background-color: #7fadd4;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
@media (max-width: 576px) {
  .search form .col-3 {
    flex-basis: 50%;
  }
}
/* card content css */
.card-container {
  max-width: 100%;
}
.card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px; 
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2); 
  transition: box-shadow 0.3s ease; 
  margin-bottom: 20px; 
}

.card:not(:last-child) {
  margin-bottom: 20px; 
}

.card:hover {
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.3); 
}

.card:hover {
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.3); 
}

.card img {
  max-width: 180px; 
  max-height: 160px; 
  border: 1px solid #ccc; 
  border-radius: 5px; 
  
  margin: 10px 0; 
  margin-left: 10px; 
}
.card .small-text {
  font-size: 12px; 
}

.card h3 {
  margin: 0; 
  font-size: 18px; 
  font-weight: bold; 
}

.card p {
  margin: 5px 0; 
  font-size: 14px; 
}

.card p.small-text {
  font-size: 12px; 
}



.min-max-input {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.min-max-input li {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.min-max-input input[type="text"] {
  width: 80px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.min-max-input input[type="text"]::placeholder {
  color: #ffffff;
}

.min-max-input input[type="text"]:focus {
  outline: none;
  border-color: #337ab7;
}

/* login ccs */

.login-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.btn-login {
  width: 100%;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  color: #ffffff;
  background-color: #337ab7;
  border-color: #2e6da4;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  left: 50%;
  transform: translateX(50%);
}

.btn-login:hover, .btn-login:focus {
  background-color: #286090;
  border-color: #204d74;
}

.login-box-body {
  text-align: center;
}

.login-box-msg {
  font-size: 18px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 40px;
  padding: 10px;
  font-size: 16px;
  border-radius: 3px;
  border: 1px solid #dddddd;
}

.glyphicon {
  position: absolute;
  top: 12px;
  left: 10px;
  color: #999999;
}


.btn-rect {
  border-radius: 0;
}

.text-muted {
  color: #999999;
}

.swal-text {
  font-size: 16px;
  text-align: center;
}

.background-image {

  background-image: url('/img/WMS_7-1024x576.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
/* register css */
body {
  font-family: Arial, sans-serif;
}

.registro-div {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f2f2f2;
  border-radius: 5px;
}

.registro-div h2 {
  text-align: center;
}

.registro-div input[type="text"],
.registro-div input[type="email"],
.registro-div input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
}

.registro-div input[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

@media (max-width: 480px) {
  .registro-div {
    max-width: 100%;
  }
}
.contaniner-register{
  height: 100vh;
}
.registro-caja {
  max-width: 400px;
  margin: 20px auto;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  margin-top: 60px;
}


.ayuda{
  height: 100vh;
}

/* Estilos responsivos para el div de ayuda */
@media screen and (max-width: 600px) {
  .ayuda {
    top: 10px;
    right: 10px;
    font-size: 12px;
  }
}
/* responsive */
.estelameestamirando{
  height: 100vh;
}

/* perfil css */
#userContainer {
  position: relative;
  cursor: pointer;
}

#userOptions {
  display: none;
  position: absolute;
  top: 153%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  padding: 10px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

.userProfile {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.userProfile img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.userInfo {
  text-align: center;
  margin-bottom: 10px;
}

.userInfo h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.userInfo p {
  font-size: 12px;
  color: gray;
}

.userActions {
  display: flex;
  justify-content: space-between;
  padding: 5px;
}

.userActions a {
  flex-grow: 1;
  text-align: center;
  text-decoration: none;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 5px;
}

.userActions a.profileLink {
  margin-right: 5px;
}

.animated-border {
  animation: border-animation 1s ease-out;
}

@keyframes border-animation {
  0% {
      border: 1px solid #ccc;
  }
  50% {
      border: 2px solid blue;
  }
  100% {
      border: 1px solid #ccc;
  }
}
.username {
  position: relative;
  display: inline-block;
  padding: 5px 10px;
  border: 2px solid white;
  border-radius: 10px;
  transition: border-color 0.3s ease;
  text-decoration: none;
}

.username:hover {
  border-color: blue;
}

.show .username {
  border-color: blue;
}
.centered-item {
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
/* pegar esto  */

/* .my-table{
    border-collapse: collapse;
}
.my-cell {
    background-color: pink;
    width: 100px;
    height: 100px;
    border: 5px solid rgb(1, 8, 87);
    padding: 10px;
} */
.my-table {
  border-collapse: collapse;
  border: 5px solid rgb(0, 1, 1);
  table-layout: fixed;
  width: 100%;
}


.my-cell {
  background-color: #f3f2c6;
  width: 250px;
  height: 150px;
  border: 5px solid #686673;
  padding: 10px;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 18px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  vertical-align: middle;
  position: relative;
}
.num {
  position: absolute;
  bottom: 5px;
  left: 5px;
  font-size: 10px;
  font-weight: bold;
}

.prod {
  position: absolute;
  left: 50%;
  top: -0%; /* centra el borde izquierdo del elemento en el centro del contenedor */
  transform: translateX(-50%); 
  /* ajusta la posición horizontal en función del ancho del elemento */
  text-align: center;
  font-size: 13px;
  font-style: italic;
  font-weight: bold;
}
.my-cell.many-products {
  background-color: red;
}
.my-cell.many-products4{
  background-color: rgb(236, 133, 7);
}
.my-cell.many-products2 {
  background-color: rgb(232, 236, 7);
}
.my-cell.many-products3{
  background-color: rgb(33, 219, 13);
}


