/* Make all group descriptions more modern and visually clear */
.group-description .well {
  background: linear-gradient(135deg, #f0f7ff 0%, #e4efff 100%);
  border-left: 6px solid #00263f;
  border-radius: 10px;
  padding: 18px 22px;
  font-size: 15px;
  color: #2b2b2b;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

#Group-Name {
  font-weight: bold;
}


#group-container {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  background-color: #f0fbfe;
  border: 1px solid #e9ecef;
  border-left: 0.25rem solid #5bc0de;
  padding-left: 1.25rem;
  padding-top: 1rem;
  padding-bottom: 2.1rem;
  border-radius: 0.25rem;
  margin-bottom: 5rem;
}

#group-container .group-title {
  font-weight: bold;
}



.fruity .btn-primary {
    background-color: #00263f;
}
.fruity .btn-primary, .fruity .btn-primary.disabled, .fruity .btn-primary.disabled.active, .fruity .btn-primary.disabled:active, .fruity .btn-primary.disabled:focus, .fruity .btn-primary.disabled:hover {
    background-color: #00263f;
}
.fruity .btn-check:active+.btn-primary, .fruity .btn-check:checked+.btn-primary, .fruity .btn-check:focus+.btn-primary, .fruity .btn-primary.active, .fruity .btn-primary.active.active, .fruity .btn-primary.active:focus, .fruity .btn-primary:active, .fruity .btn-primary:focus, .fruity .btn-primary:hover, .fruity .open .dropdown-toggle.btn-primary {
    background-color: #00263f;
    border: 1px solid #00263f;
    color: #fff;
}

.fruity .btn-primary, .fruity .btn-primary.disabled, .fruity .btn-primary.disabled.active, .fruity .btn-primary.disabled:active, .fruity .btn-primary.disabled:focus, .fruity .btn-primary.disabled:hover {
    background-color: #00263f;
    border: 1px solid #00263f;
}

.img {
    width: 200px;
}

.fruity .text-info, .fruity .text-primary, .fruity .text-success {
    color: #00263f;
}

.fruity .progress-bar {
    background-color: #00263f;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    color: #fff;
}

.question-container {
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 5px;
}

.fruity .text-info, .fruity .text-primary, .fruity .text-success {
    color: #00263f !important;
}

.fruity .btn-outline-secondary {
    background-color: hsla(0, 0%, 100%, .2);
    border: 1px solid #00263f;
    color: #00263f;
}

.input {
    color: #00263f;
}

.fruity .input-group-addon, .fruity .input-group-text {
    background-color: #00263f;
    color: #fff;
}

.tooltip-custom {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Style the green circular "i" icon */
.info-icon-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #28a745;
  color: white;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  cursor: help;
}

/* Tooltip box styling */
.tooltiptext-custom {
  visibility: hidden;
  opacity: 0;
  width: 250px;
  background-color: #333;
  color: #fff;
  text-align: left;
  border-radius: 5px;
  padding: 8px 12px;
  position: absolute;
  z-index: 9999;
  top: 120%; /* Pushes it below the icon */
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
  pointer-events: none; /* Prevents accidental hover flicker */
}

/* Show tooltip when hovering anywhere over the whole block */
.tooltip-custom:hover .tooltiptext-custom {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.fruity .form-control[disabled]  {
    color: #1e1919;
}


/* Responsive tweak for mobile */
@media (max-width: 768px) {
  .ls-group-remaining .control-label,
  .ls-group-remaining .ls-input-group {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .ls-group-remaining .ls-input-group {
    justify-content: space-between;
  }
}

@media (max-width: 767.98px) {
  .row {
    --bs-gutter-x: 0px;
  }
  .img {
      width: 150px;
  }
}

