.organization-switcher--trigger-button {
  background-color: transparent;
  width: 100%;
  border: none;
  outline: none;

  &[data-disabled="true"] {
    cursor: auto;
    opacity: 1;
    outline: none;
  }

  span.organization-switcher--name {
    font-size: var(--rem-14);
    font-variation-settings: 'wght' var(--text-semibold);
    color: var(--text-action-neutral);
    transition: opacity 0.2s linear, width 0.2s linear;
  }
}

@media screen and (max-width: 576px) {
  .organization-switcher--trigger-button {
    gap: 0.25rem;

    span.organization-switcher--name {
      display: none;
    }
  }
}

.navbar[data-open="false"] .organization-switcher--trigger-button {
  
  @media screen and (min-width: 576px) {
    span.icon {
      display: none;
    }
  }

  span.organization-switcher--name {
    opacity: 0;
    width: 0;
  }
}

.organization-switcher--name-logo-container {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .5rem;
}

.organization-switcher--initials {
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background-color: var(--primary-500);
  color: white;
  font-size: 1rem;
  font-variation-settings: 'wght' var(--text-semibold);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

img.organization-switcher--initials {
  background-color: transparent;
  object-position: center center;
  object-fit: contain;
}

img.organization-switcher--logo {
  object-fit: contain;
  object-position: center center;
  border-radius: var(--radius-sm);
}

.organization-switcher--switch-item-button {
  background-color: transparent;
  justify-content: space-between;
  gap: 1rem;

  span.icon {
    visibility: hidden;
  }

  &[data-selected="true"] {
    span.icon {
      visibility: visible;
    }
  }
}