.organization-tenant-switcher-switch {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  height: 52px;
  width: fit-content;
  max-width: 220px;

  border-radius: 8px;
  border: 1px solid var(--Gray-100, #f2f4f7);
  background: var(--Base-White, #fff);
  transition: all 0.3s ease;

  &:hover {
    border-color: var(--Gray-200, #e5e7eb);
    box-shadow: 0px 2px 4px 0px rgba(16, 24, 40, 0.15);
  }

  &-readonly {
    border: none;
    padding-right: 16px;

    &:hover {
      border: none;
      box-shadow: none;
    }
  }
}

.organization-tenant-switcher-overlay {
  .pisell-lowcode-dropdown-menu-item {
    padding: 9px 10px;
  }
}

.organization-tenant-switcher-switch-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--Gray-700, #344054);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
}

.organization-tenant-switcher-switch-logo {
  margin-right: 6px;
  color: #344054;
}

.organization-tenant-switcher-item-check {
  font-size: 16px;
}

.organization-tenant-switcher-item-name {
  flex: 1;
  color: var(--Gray-700, #344054);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.organization-tenant-switcher-item {
  width: 208px;
  display: flex;
  align-items: center;
  gap: 12px;
  //padding: 9px 10px;
}

.organization-tenant-switcher-item-logo {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: contain;
}

.organization-tenant-switcher-switch-chevron {
  font-size: 16px;
  color: #101828;
}
