/* Sidebar */
.body_sidebar {
  font-family: "Poppins";
  margin: 0;
  padding: 0;
  background-color: #f9f5f9;
  transition: margin-left 0.3s ease, width 0.3s ease;
 
}

body.acomodo {
  margin-left: 230px;
  width: calc(100% - 230px);
  font-family: "Poppins";
}

body{
font-family: "Poppins";
background-color: #f4f7fb;
}

.letras{
  margin-left: 60px;
  margin-top: -2% !important ;
}
.letras1{
  margin-right: 50px;
  margin-top: -2% !important ;
}

.menu-item {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #050715;
  
}

.menu-item:hover {
  background-color: #f4f7fb  ;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  flex-direction: column;
  margin-left: 30px;
}

.menu-item.active + .dropdown-content {
  display: flex;
}

.dropdown-content a {
  color: #050715;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 5px;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background-color: #cfd8dc;
}

.arrow {
  transition: transform 0.3s;
}

.menu-item.active .arrow {
  transform: rotate(90deg);
}

.li:hover{
  background-color:  #f4f7fb;
  cursor: pointer;
}

.imgini {
  margin-right: 20px;
  
}
.imgini1 {
  margin-right: 20px;
  margin-bottom: -10%;
  
}

.imagotipo {
  width: 77px;
  height: 83px;
  margin-left: 70px;
}
.sidebar {
  height: 100%;
  width: 230px;
  position: fixed;
  top: 0;
  left: -230px;
  z-index: 1000;
  background-color: #ffffff;
  padding-top: 20px;
  transition: left 0.3s ease-in-out;
  overflow: scroll;
  overflow-x: hidden;
}

.sidebar.active {
  left: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.sidebar .active ul {
  opacity: 1;
}

.sidebar li {
  padding: 10px;
 
}

.sidebar a {
  color: black;
  text-decoration: none;
  display: block;
}
.sidebar a:hover {
  background-color: #f4f7fb;
  border-radius: 20px;
}
.open-btn,
.close-btn {
  position: fixed;
  background-color: #f4f7fb;
  color: black;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 30px;
  border-radius: 5px;
}
.open-btn {
  top: 10px;
  left: 10px;
}
.close-btn {
  top: 10px;
  left: 240px;
  display: none;
}
.cta {
position: relative;
margin: auto;
margin-left: 2%;
padding: 12px 18px;
transition: all 0.2s ease;
border: none;
background: none;
cursor: pointer;
}

.cta:before {
content: "";
position: absolute;
top: 0;
left: 0;
display: block;
border-radius: 50px;
background: #d31c1c;
width: 45px;
height: 45px;
transition: all 0.3s ease;
}

.cta span {
position: relative;
font-family: "Poppins";
font-size: 18px;
font-weight: 700;
letter-spacing: 0.05em;
color: black;
}

.cta svg {
position: relative;
top: -15px;
margin-left: 165px;
fill: none;
stroke-linecap: round;
stroke-linejoin: round;
stroke: #d31c1c;
stroke-width: 2;
transform: translateX(-5px);
transition: all 0.3s ease;
}

.cta:hover:before {
width: 100%;
background: #d31c1c;
}

.cta:hover svg {
transform: translateX(0);
}

.cta:active {
transform: scale(0.95);
}
/* Fin de sidebar */

/* reportes */
.txtrep {
  margin-left: 20%;
  font-weight: 300;
  margin-top: 5%;
}
.notification {
  margin-left: 20%;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  position: relative;
  width: 28rem;
  height: 5rem;
  background: #8C93A8;
  border-radius: 1rem;
  overflow: hidden;
  font-size: 16px;
  --gradient: linear-gradient(to bottom, #2eff2e, #64ff3d, #9eff61);
}
.notification:after {
  position: absolute;
  content: "";
  width: 0.25rem;
  inset: 0.65rem auto 0.65rem 0.5rem;
  border-radius: 0.125rem;
  background: var(--gradient);
  transition: transform 300ms ease;
  z-index: 4;
}
.notititle {
  color: white;
  padding: 0.65rem 0.25rem 0.4rem 1.25rem;
  font-weight: 500;
  font-size: 1.1rem;
  transition: transform 300ms ease;
  z-index: 5;
}

.notibody {
  color: white;
  padding: 0 1.25rem;
  transition: transform 300ms ease;
  z-index: 5;
}
.notiglow {
  z-index: 3;
}
.notiborderglow {
  z-index: 1;
}
.notification:hover .notiglow {
  opacity: 0.1;
}
.notification:hover .notiborderglow {
  opacity: 0.1;
}
.note {
  color: green;
  position: fixed;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.9rem;
  width: 75%;
}
.icono {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 30px;
  pointer-events: auto;
}
.svg-link {
  display: inline-block;
}
/* Fin de reportes */


/* LOGIN */
.body_login {
  font-family: "Poppins";
  margin: 0;
  padding: 0;
  height: 100vh;
  background-color: #f8f9fa;
  overflow: hidden;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: #f8f9fa;
  flex-direction: column;
}

.login-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  top: 15px;
  left: -350px;
}

.logo {
  width: 84px;
  height: 90px;
  background-size: cover;
  background-position: center;
  border-radius: 100%;
  position: center;
}

.title {
  font-size: 36px;
  font-weight: 500;
  color: #333;
  margin-top: 40px;
}

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

.form-control {
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #9b4dca;
  outline: none;
}

.btn-login {
  background-color: #9b4dca;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  border: none;
  transition: background-color 0.3s;
}

.btn-login:hover {
  background-color:rgb(119, 61, 155);
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  position: relative;
  left: -350px;
}

.footer p {
  margin: 0;
  color: #aaa;
}
.circle-green {
  width: 1000px;
  height: 1000px;
  background-color:  #9b4dca;
  border-radius: 50%;
  position: absolute;
  bottom: 55%;
  right: -500px;
}
.circle-purple {
  width: 1000px;
  height: 1000px;
  background-color: #00b894;
  border-radius: 50%;
  position: absolute;
  top: 47%;
  right: -500px;
}
/* LOGIN */
/* LISTA AUDITORIA */
.body_li_au{
  list-style-type: none;
  margin: 0;
  padding: 0;
  
}
.table-container {
  margin: 20px;
}
.th_td_au {
  padding: 12px;
  text-align: left;
}
.th_au {
  background-color: #dddddd;
  color: #333333;
}
.tr:nth-child(even) {
  background-color: #f9f9f9;
}
.status-approved {
  background-color: #4CAF50;
  color: white;
  padding: 4px 8px;
  border-radius: 5px;
}
.status-not-approved {
  background-color: #f44336;
  color: white;
  padding: 4px 8px;
  border-radius: 5px;
}
.status-approved::after {
content: "APROBADO";
}
.status-not-approved::after {
content: "NO APROBADO";
}
.revision {
  font-weight: bold;
}
.search-container {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  position: relative;
  left: 200px;
}
.search-container {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  position: relative;
  left: 200px;
}

.search-container_vi {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  position: relative;
  left: 500px;
}

.search-container_v {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  position: relative;
  left: 350px;
}

.input {
  flex-grow: 1;
  padding: 10px;
  background-color: #dddddd;
  border-radius: 5px;
  margin-left: 250px;
  font-size: 16px;
}

.input_la {
  flex-grow: 1;
  padding: 10px;
  background-color: #dddddd;
  border-radius: 5px;
  margin-left: 400px;
  font-size: 16px;
}

.input_vi {
  flex-grow: 1;
  padding: 10px;
  background-color: #dddddd;
  border-radius: 5px;
  margin-left: 10px;
  font-size: 16px;
}

.icons {
  display: flex;
  gap: 10px;
}

.icon {
  color: #D1D5DB;
  font-size: 18px;
  cursor: pointer;
}

.icon:hover {
  color: #E5E7EB;
}
.input {
  color:rgb(0, 0, 0);  
}
/* LISTA AUDITORIA */
/* AUDITORIA */
th, td{
  font-size: 12px;
}

.custom-textarea {
  resize: none;
}

.form-container {
  padding: 2px;
  max-width: 1200px;
  margin: 2rem auto;
}

.form-header {
  font-size: 1.5rem;
  color: white;
  text-align: center;
  margin-bottom: 1rem;
}

.input-group {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 1rem;
}

.input-group select,
.input-group textarea {
  background-color: #dddddd;
  color: #333333;
  border: 1px solid #f4f7fb;
  padding: 0.5rem;
  border-radius: 5px;
  width: 100%;
}

.textarea-wrapper {
  flex: 1;
}

.btn-submit {
  background-color:#dddddd;
  color: #333333;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  width: 25%;
  font-size: 1rem;
}

.btn-submit:hover {
  background-color:#aaaaaa;
}

.image-thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  background-color: #f8f9fa;
  padding: 5px;
  border-radius: 4px;
  border: 1px solid #dee2e6;
}

.thumbnail-container:hover {
  transform: scale(1.05);
  transition: transform 0.2s;
}

/* AUDITORIA */
/* FORMS */
.body_fv{
  display: flex;
  font-family: 'Poppins';
  flex-direction: column;
}

.body_bm{
display: flex;
flex-direction: column;
margin: 30px;
padding: 30px;
}

.form-container-es {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-container-fv {
display: grid;
gap: 2rem;
}

.input-field {
  background-color: #dddddd;
  border: 1px solid #f4f7fb;
  padding: 1rem;
  color: #333333;
  border-radius: 0.5rem;
}

.textarea-field {
  background-color: #dddddd;
  border: 1px solid #f4f7fb;
  padding: 1rem;
  color: #333333;
  border-radius: 0.5rem;
  height: 150px;
}

.select {
  background-color: #dddddd;
  border: 1px solid #f4f7fb;
  color: #444444;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.file-input {
  background-color: #dddddd;
  border: 1px solid #f4f7fb;
  width: 100%;
  height: 150px;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.file-input span {
  color: #aaa;
}

.submit-btn:hover {
  background-color:#aaaaaa;
}

.submit-btn {
background-color:#dddddd;
color: #333333;
padding: 0.75rem 1.5rem;
border-radius: 30px;
border: none;
cursor: pointer;
width: 30%;
font-size: 1rem;
}

.submit-btna:hover {
  background-color:#af0000;
}

.submit-btna {
background-color:#e20000;
color: #dddddd;
border-radius: 5px;
margin-left: 5px;
margin-right: 20px;
border: none;
cursor: pointer;
width: 150px;
}

.submit-btnap:hover {
  background-color:#af0000;
}

.submit-btnap {
background-color:#e20000;
color: #dddddd;
border-radius: 5px;
margin-left: 5px;
margin-right: 20px;
border: none;
cursor: pointer;
width: 150px;
}

.submit-btnap button {
  color: #dddddd; /* Ajusta el color del texto */
  font-size: 16px; /* Ajusta el tamaño de la fuente */
  font-family: Arial, sans-serif; /* Ajusta la fuente */
  border: none; /* Elimina cualquier borde del botón */
  background-color: transparent; /* Elimina el fondo del botón */
  padding: 10px; /* Añade algo de espacio dentro del botón */
  cursor: pointer; /* Cambia el cursor para indicar que es clickeable */
}

.submit-btnas:hover {
  background-color:#00997a;
}

.submit-btnas {
background-color:#00b894;
color: #dddddd;
border-radius: 5px;
margin-left: 5px;
margin-right: 20px;
border: none;
cursor: pointer;
width: 150px;
}

.form-header-es {
  font-size: 2rem;
  color: black;
}
/* FORMS */
/* INICIO */
.body-inicio {
  font-family: 'Poppins';
  background-color: #f4f7fb;
  margin: 0;
  padding: 0;
}
.container-inicio {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  display: flex;
  gap: 40px;
}
.left-panel {
  padding: 20px;
  width: 250px;
}
.right-panel {
  background-color: white;
  padding: 20px;
  flex: 1;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.calendar {
  border-radius: 8px;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.calendar-day {
  padding: 5px;
  display: inline-block;
  width: 30px;
  text-align: center;
}
.calendar-day:hover {
  background-color: #e3e3e3;
  cursor: pointer;
}
.calendar-day.selected {
  background-color: #4f97fc;
  color: white;
}
.task-list {
  margin-top: 20px;
}
.task {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}
.task:last-child {
  border-bottom: none;
}
.task-time {
  font-weight: 500;
}
.task-assignee {
  color: #555;
}
.chart-container {
  margin-top: 20px;
}
/* INICIO */
/* Productos */


.card {
margin-left: 20%;
margin-top: 5%;
--border-radius: 0.75rem;
--primary-color: #7257fa;
--secondary-color: #3c3852;
width: 210px;
font-family: "Poppins";
padding: 1rem;
cursor: pointer;
border-radius: var(--border-radius);
background: #ffffff;
box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 3%);
position: relative;
border: 1px #7257fa solid ;


}
.card > * + * {
margin-top: 1.1em;
}
.card .card__content {
color: var(--secondary-color);
font-size: 0.86rem;
}
.card .card__title {
padding: 0;
font-size: 1.3rem;
font-weight: bold;
}
.card .card__date {
color: #6e6b80;
font-size: 0.8rem;
}
.card .card__arrow {
position: absolute;
background: var(--primary-color);
padding: 0.4rem;
border-top-left-radius: var(--border-radius);
border-bottom-right-radius: var(--border-radius);
bottom: 0;
right: 0;
transition: 0.2s;
display: flex;
justify-content: center;
align-items: center;
}
.card svg {
transition: 0.2s;
}
.card:hover .card__title {
color: var(--primary-color);
text-decoration: underline;
}
.card:hover .card__arrow {
background: #111;
}
.card:hover .card__arrow svg {
transform: translateX(3px);
}

.cont{
  margin-right: 19%;
  margin-left: 30px;
  margin-top: 20px;
}
.mas{
width: 50px;
height: 50px;
margin-left: 30%;
margin-top: 25%;

}
.txtpr{
color: #1473E6;
text-align: center;
font-weight: 400;
}
/* Fin de productos */
/* Usuarios */
.txtusu{
margin-left: 8%;
margin-top: 5%;
font-weight: 400;
font-family: "Poppins";
}

.botoness{
  position:absolute ;
  margin-bottom: -90px;
  width: 120px;
  margin-left: 1050px !important;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr ;
  background-color: white;
  z-index: 0;
   border: 1px #7257fa solid;

}
.btnlist{
  width: 40px;
  height: 40px;
  
  
}




.toggleBtn{
  width: 40px;
  height: 40px;

}


.gridacomodo{
  display: grid; 
  grid-template-columns: repeat(5, 1fr); 
  gap: 
  10px; 
  padding: 15px;
}
.contelem{
width: 500px;
margin-left: 50%;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
margin-right: 70px;
}
.contelem3{
  width: 500px;
  margin-left: 6%;
  display: grid; 
  grid-template-columns: repeat(5, 1fr);
 
 }
.borrar{
width: 110%!important;
height: 33px;
padding: 7px;
}
.editar{
 width: 30px;
height: 30px;
padding: 7px;
margin-top: -29%;
}
.agregar{
  width: 20px;
  height: 20px;
  padding: -1px;
  margin-top: 25%;
}
.agregar2{
  width: 20px;
  height: 20px;
  padding: -1px;
  position:absolute ;
  margin-top: 7px;
  
  
  
  
}
.search {
display: flex;
align-items: center;
justify-content: space-between;
text-align: center;
}
.search__input {
font-family: "Poppins";
font-size: inherit;
background-color: #f4f2f2;
border: none;
color: #646464;
padding: 0.7rem 1rem;
border-radius: 5px;
width: 25em;
transition: all ease-in-out .5s;
margin-right: 2rem;
}
.search__button {
border: none;
background-color: #f4f2f2;
margin-top: .1em;
}
.search__button:hover {
cursor: pointer;
}
.search__icon {
height: 1.3em;
width: 1.3em;
fill: #b4b4b4;
}
.contelem2{
width: 100px;
display: grid;
grid-template-columns: 1fr 1fr ;
}



/* Contenedor del modal */
.modal-content {

padding: 20px;

}

.modalpor {
  display: none; 
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
  padding-top: 60px;
}

.modalpor-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 600px; 
  border-radius: 8px; 
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Botón de cerrar */
.close {
position: absolute;
right: 10px;
top: 5px;
font-size: 20px;
cursor: pointer;
}

/* Botón estilizado */
.btn-editar {

color: white;
border: none;
padding: 8px 15px;
cursor: pointer;
border-radius: 5px;
}


.btn-guardar {
background-color: #050715;
color: white;
border: none;
padding: 10px 20px;
cursor: pointer;
border-radius: 5px;
}

.btn-guardar:hover {
background-color: #03040e;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.btnedit{
  font-family: "Poppins";
  font-size: inherit;
  background-color: #f4f2f2;
  border: solid black 1px;
  color: #646464;
  padding: 0.7rem 1rem;
  border-radius: 5px;
  width: 15em;
  transition: all ease-in-out .5s;
  margin-left: 50%;
}
.btnedit:hover{
  background-color: black;
  color: white;
}

.search__input2 {
  font-family: "Poppins";
  font-size: inherit;
  background-color: #f4f2f2;
  border: none;
  color: #646464;
  padding: 10px !important;
  border-radius: 5px;
  width: 20em;
  transition: all ease-in-out .5s;
  margin-right: 9rem;
  display: grid;
  grid-template-columns: 1fr ;
}

.contenedor{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px ;
}

.contenedor1{
  display: grid;
  
}

/* Media query para pantallas más grandes */


@media (min-width: 1200px) {
  .botoness {
    margin-left: 900px;
    
    
  }


}

@media (min-width: 768px) {
    .modalpor-content {
        width: 50%; 
    }
}

@media (min-width: 1024px) {
    .modalpor-content {
        width: 40%;
        
    }
}

/* Fin usuarios */
/* formulario usuarios */
.breadcrumb {
display: flex;
align-items: center;
font-size: 16px;
}
.breadcrumb a {
text-decoration: none;
color: #A238FF;
font-weight: bold;
}
.breadcrumb span {
margin: 0 8px;
color: #777;
}
.breadcrumb .actual {
color: #050715; 
font-weight: bold;
}
.group {
position: relative;
}
.inputl {
font-size: 16px;
padding: 10px 10px 10px 5px;
display: block;
width: 200px;
border: none;
border-bottom: 1px solid #000000;
background: transparent;
}
.inputl:focus {
outline: none;
}

.inputl:focus ~ label, .inputl:valid ~ label {
top: -20px;
font-size: 14px;
color: #5264AE;
}

.bar {
position: relative;
display: block;
width: 200px;
}

.bar:before, .bar:after {
content: '';
height: 2px;
width: 0;
bottom: 1px;
position: absolute;
background: #5264AE;
transition: 0.2s ease all;
-moz-transition: 0.2s ease all;
-webkit-transition: 0.2s ease all;
}
.bar:before {
left: 50%;
}
.bar:after {
right: 50%;
}
.inputl:focus ~ .bar:before, .inputl:focus ~ .bar:after {
width: 50%;
}
.highlight {
position: absolute;
height: 60%;
width: 100px;
top: 25%;
left: 0;
pointer-events: none;
opacity: 0.5;
}
.inputl:focus ~ .highlight {
animation: inputHighlighter 0.3s ease;
}

@keyframes inputHighlighter {
from {
 background: #5264AE;
}

to {
 width: 0;
 background: transparent;
}
}

#btnusu{
width: 200px;
}
.formusu{
width: 100%;
height: 80%;
display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5rem;
 
}
.btnbrr{
border: none;
width: auto;
height: 15px;
background-color: transparent;


}
#btnedit{
  border: none;
  width: auto;
  height: 15px;
  background-color: transparent;
  margin-top: 20px;
 }

/*  fin formulario usuarios */
.status-finalizado::after {
content: "FINALIZADO";
}

.status-finalizado {
  background-color: gray;
  color: white;
  padding: 4px 8px;
  border-radius: 5px;
}

