.general-form {
    max-width: 90%;
    margin: auto;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.input-group-text {
    min-width: 120px;
    text-align: center;
    min-height: inherit;
}

.input-group {
    display: flex;
    align-items: center;
    min-height: 2.3rem;
}

.form-control {
    flex: 1 1 auto;
    margin-left: 0.5rem;
    min-height: inherit;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.text-end {
    text-align: right;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-check-input {
    cursor: pointer;
}

.form-check-label {
    margin-left: 0.5rem;
}

@media (max-width: 576px) {
    .general-form {
        max-width: 100%;
   }
    .input-group-text {
        min-width: 100px;
        font-size: 0.9rem;
    }

    .form-check-label {
        font-size: 0.9rem;
    }

    .btn {
        font-size: 0.9rem;
    }
}



.invitations-wrapper {
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
}

.button-wrap {
    position: relative;
    text-align: center;
    top: 50%;
}

.button-label {
  display: inline-block;
  padding: 1em 2em;
  margin: 0.5em;
  cursor: pointer;
  color: #292929;
  border-radius: 0.25em;
  background: #efefef;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 -3px 0 rgba(0, 0, 0, 0.22);
  transition: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.button-label h1 {
  font-size: 1em;
}
.button-label:hover {
  filter: brightness(90%);
  color: #101010;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 -3px 0 rgba(0, 0, 0, 0.32);
}
.button-label:active {
  transform: translateY(2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0px -1px 0 rgba(0, 0, 0, 0.22);
}
@media (max-width: 40em) {
  .button-label {
    padding: 1em 1em;
    margin: 0.25em;
  }
}

#ok:checked + .button-label {
  background: var(--success-color);
  color: #efefef;
}
#ko:checked + .button-label {
  background: var(--danger-color);
  color: #efefef;
}
#na:checked + .button-label {
  background: var(--warning-color);
  color: #efefef;
}