:root{
    --fuente-titulo: 'Lato', sans-serif;
}
*, *:before, *:after {
    box-sizing: inherit;
}
html {
    box-sizing: border-box;
}
body{
    font-family: var(--fuente-titulo);
}
.contenedor{
    width: 90%;
    margin: 0 auto;
}
.table_tiendas{
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #ccc;
}
.table_tiendas thead{
    background-color: #f5f5f5;
}
.table-striped thead tr th {
    background-color: #f5f5f5;
    font-weight: bold;
  }
.table_tiendas tr th{
    padding: 10px;
    font-weight: bold;
    text-align: center;
    border: 1px solid #ccc;
}
.table_tiendas th {
    background-color: #f5f5f5;
    font-weight: bold;
  }

  .table_tiendas tr:hover {
    background-color: #f0f0f0;
  }
.table_tiendas tbody td{
    padding: 5px;
    border: 1px solid #dbdada;
}
/* Estilos para las clases de Bootstrap (opcional) */
.table-striped tbody tr:nth-of-type(2n) {
  background-color: #f7f7f7;
}
.icon-edit{
    padding: 5px;
    cursor: pointer;
}
.info_tiendas{
    margin: 0;
    font-size: 13px;
    color: #89949d;
    font-weight: normal;
}
.agregar_list{
    color: #50ab1c;
    position: absolute;
    left: 10px;
    top: 5px;
    cursor: pointer;
    font-size: 20px;
}
.relative{
    position: relative;
}
.flex{
    display: flex;
    gap: 10px;
    align-items: center;
}
.scroll{
    overflow-x: scroll;
}
.delete_list{
    color: #ff6565;
    position: absolute;
    left: 10px;
    top: 5px;
    cursor: pointer;
    font-size: 20px;
}
.lists_prices{
    display: flex;
    justify-content: space-between; /* Distribuye los elementos equitativamente */
  }
.display_flex{
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Crea 3 columnas de igual tamaño */
}
.item{
    width: 440px; /* Establece el ancho deseado para los elementos hijos */
    padding: 10px;
    margin: 5px;
   
}
