
.btn-outline-custom {
  background-color: transparent;
  border: 2px solid #1e4356;
  color: #1e4356;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover,
.btn-outline-custom:focus,
.btn-outline-custom.focus {
  background-color: #1e4356;
  color: #fff;
  border-color: #1e4356;
}

.btn-outline-custom:focus,
.btn-outline-custom.focus {
  box-shadow: 0 0 0 0.25rem rgba(30, 67, 86, 0.5);
}

.btn-outline-custom:active,
.btn-outline-custom.active {
  background-color: #153342;
  border-color: #153342;
  color: #fff;
}

.btn-outline-custom:disabled,
.btn-outline-custom.disabled {
  background-color: transparent;
  border-color: #6c757d;
  color: #6c757d;
  opacity: 0.65;
  cursor: not-allowed;
}