.color-selector-bandeja {
    display: flex;
    flex-wrap: wrap;
  /*  gap: 10px;
    justify-content: space-between;*/
    margin-top: 10px;
  }
.inputName{
    text-align:center; font-weight:100;font-size:1.15em; padding:2%;
}
  .color-option-bandeja {
    width: 23%;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    margin-right: 2%;
    border: 2px solid transparent;
    border-radius: 15px;
   /* background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .color-option-bandeja img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    transition: border 0.2s;
  }

  .color-option-bandeja img.borde-activo {
    border: 3px solid #e1007e;
    box-shadow: 0 0 0 3px rgba(225, 0, 126, 0.2);
  }
  #paleta_bandeja {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 10%;
    padding: 0;
    list-style: none;
  }
  
  #paleta_bandeja li {
    flex: 0 0 100px;
    text-align: center;
    background: white;
    border: 2px solid #ccc;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
  }
  
  #paleta_bandeja li:hover {
    border-color: #e1007e;
    box-shadow: 0 0 0 3px rgba(225, 0, 126, 0.2);
    transform: translateY(-2px);
  }
  
  #paleta_bandeja img {
    width: 50px;
    height: auto;
    display: block;
    margin: 0 auto;
  }


  #paleta_bandeja li.borde-activo {
    border: 3px solid #e1007e;
    box-shadow: 0 0 0 3px rgba(225, 0, 126, 0.2);
  }

  .bandeja-panel {
    border: none;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }
  
  .inputName {
    text-align: center;
    font-weight: 100;
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .bandeja-grupo {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
  }
  
  .bandeja-control {
    flex: 1;
    text-align: center;
  }
  
  .bandeja-control label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
  }
  
  .bandeja-control input,
  .bandeja-control select {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fdfdfd;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    text-align: center;
  }
  
  .bandeja-control input:focus,
  .bandeja-control select:focus {
    outline: none;
    border-color: #007aff;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.2);
  }
  

  @media (max-width: 768px) {
    .color-option-bandeja {
      width: 32%;
    }
  }

  @media (max-width: 480px) {
    .color-option-bandeja {
      width: 48%;
    }
  }