.fondo-rayado{
    background: url('../imagenes/tile1.png') repeat;
    background-size: 5px 5px;
}

.t-derecha{
    text-align:right;
}

.text-c-voucher{
  color:#656091;
}
.text-b-voucher{
  font-weight: bold;
  color:#656091;
}

.background-voucher{
  background-color:#f9da84;
}
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}
.red {
  color:red;
  font-weight: bold;
}
.table-totales{
  background-color: #acff98;
  font-weight: bold;
}
.modal:nth-of-type(even) {
  z-index: 1052 !important;
}
.modal-backdrop.show:nth-of-type(even) {
  z-index: 1051 !important;
}

/* separa la barra de botones  */
.nav-item{
  margin-left: 2px;
  margin-right: 2px;
}

/* imagen crear oferta y mostrar ofertas */
@media (max-width: 600px){
  .imagen_portada{
    /* width: 100%; */
    max-width: 200px;
    max-height: 150px;
  }
}
@media (min-width: 600px){
  .imagen_portada{
    
	max-width: 200px;
    max-height: 200px;
  }
}
.imagen_portada:hover{
  scale: 1.05;
}

.ItemTitle_titleLink-mr9H4 {
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}
.ItemTitle_titleLink-mr9H4_gray {
  color: gray;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}
.ItemTitle_ownerLink-tMhWC {
  color: #9b9dad;
  font-size: .9rem;
  text-transform: none;
  letter-spacing: 0;
}
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }
  /* color head table */
  
  table thead tr {
    background-color: rgba(128, 128, 128, 0.795); color:white;
  }
  
  .text-enlinea{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  
  /* css nav-bar */
  /* .seleccionado:hover{
    background-color: rgb(211, 182, 182);
    border-radius: 5px; 
    font-weight: bold;
    
  } */
  .seleccionado {
    flex: 1;
    /* background-color: #ffffff; */
    /* color: #181616 !important; */
    border-radius: 15px;
    padding: 0.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.1s ease-out;
    animation:scale-up-bottom 0.4s;
  }
  
  .seleccionado:hover,
  .seleccionado:focus {
    /* background-color: #fd7d139c; */
    color: #0f0e0e !important;
    font-weight: bolder;
  }

  /* .seleccionado_fijo{
    background-color: rgb(230, 197, 197);     
    border-radius: 5px;     
  } */

.scale-up-bottom{animation:scale-up-bottom 0.4s; } 
@keyframes scale-up-bottom{
  0%{transform:scale(.5);
  transform-origin:center bottom}
  100%{transform:scale(1);
  transform-origin:center bottom}
}


/* Container for the nav items (optional context) */
.web-header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* Evenly spaces your nav items */
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Base style for the navigation item link */
.web-header-nav-item {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151; /* Neutral dark grey text */
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem; /* Smooth rounded corners */
  transition: all 0.2s ease-in-out; /* Smooth transition for hover effects */
}

/* Hover state: When a user mouse-overs the item */
.web-header-nav-item:hover {
  color: #f3f4fa; /* Changes text to a vibrant blue */
  background-color: #f3f4f6; /* Subtle background highlight */
}

/* Focus state: Critical for keyboard accessibility (Tab navigation) */
.web-header-nav-item:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* Active state: Highlights the current page the user is viewing */
.web-header-nav-item.active {
  color: #2563eb;
  font-weight: 600;
  background-color: #eff6ff;
}

