.tenant-selector-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
}

.tenant-selector-modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 1.5rem;
  border: 1px solid #888;
  width: 80%;
  max-width: 52rem;
}

.tenant-selector-modal-footer {
  padding: 0 4rem;
  gap: 2rem;
}

.tenant-selector-modal-list {
  list-style-type: none;
  padding: 0;
}

.tenant-selector-modal-list li {
  border: 1px solid var(--isogray-3);
  border-radius: var(--borderRadius);
  padding: 1rem;
  margin: 0.5rem 0;
  cursor: pointer;
}

.tenant-selector-modal-list li:hover,
.tenant-selector-modal-list li.checked {
  border-color: var(--primary-brand-50);
  background: var(--primary-brand-50);
}
