.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.nav-item {
    color: #f9ffb4;
}

.nav-item:hover {
    color: #38b8a0;
}
.image-column {
    min-height: 500px; 
}

.full-image {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block; 
}

.image-background {
    background-image: url('/public/img/login.png');
    
    background-size: contain; 
    background-repeat: no-repeat;
    background-position: center; 

    min-height: 500px; 
}

.consent-scrollable {
  max-height: 50vh;
  overflow-y: auto; /* Adds a vertical scrollbar when content overflows */
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin: 1rem 0;
  background-color: #f9f9f9;
}

@media (min-width: 768px) {
  .consent-scrollable {
    max-height: 500px;
  }
}

/* switch */
.switch {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 34px;
  user-select: none;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #005c4b;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  transform: translateX(56px);
}

.text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
}

.yes-text, .no-text {
  position: absolute;
  transition: opacity 0.4s ease-in-out;
}

.yes-text {
  left: 10px;
  opacity: 0;
  color: white;
}

.no-text {
  right: 10px;
  opacity: 1;
  color: #6d6d6d;
}

input:checked ~ .text .yes-text {
  opacity: 1;
}

input:checked ~ .text .no-text {
  opacity: 0;
}