/* ============== BOOTSTRAP MIN =========================== */
	.inputBootstrap 
	{
          display: block;
      width: 100%;
      padding:7px;
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.5;
      color: #212529;
      background-color: #fff;
      background-clip: padding-box;
      border: 1px solid #ced4da;
      appearance: none;
      border-radius: 0.375rem;
      transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	}
	
    	.inputBootstrap:focus {
      color: #212529;
      background-color: #fff;
      border-color: #86b7fe;
      outline: 0;
      box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }
    
    .inputBootstrap::placeholder {
      color: #6c757d;
      opacity: 1;
    }
    
    .inputBootstrap:disabled,
    .inputBootstrap[readonly] {
      background-color: #e9ecef;
      opacity: 1;
    }
    	
	.buttonBootstrap {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: black;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: #0d6efd;
  border: 1px solid #0d6efd;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.375rem;
  transition: color 0.15s ease-in-out,
              background-color 0.15s ease-in-out,
              border-color 0.15s ease-in-out,
              box-shadow 0.15s ease-in-out;
  border:1px solid #0000002b;background:#dbdbdb;
  cursor:pointer;

}


.buttonBootstrap:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.buttonBootstrap:active {
  background-color: #0a58ca;
  border-color: #0a53be;
}

.buttonBootstrap:disabled,
.buttonBootstrap[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
	
	
	.inputGroupBootstrap {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
}

/* El input dentro del grupo */
.inputGroupBootstrap > .inputBootstrap {
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* El botón dentro del grupo */
.inputGroupBootstrap > .buttonBootstrap {
  position: relative;
  z-index: 2;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

/* Para textos o spans dentro del grupo (como addons) */
.inputGroupBootstrap-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
}

/* Ajustes cuando está junto a un input o botón */
.inputGroupBootstrap > .inputGroupBootstrap-text:not(:last-child),
.inputGroupBootstrap > .inputBootstrap:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.inputGroupBootstrap > .inputGroupBootstrap-text:not(:first-child),
.inputGroupBootstrap > .buttonBootstrap:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: -1px; /* elimina doble borde */
}

	
	
	
	