/* Style the dropdown container with relative positioning */
.dropdown-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.dropdown-box {
  display: none;
  position: absolute;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}

/* Style the dropdown options */
.dropdown-options {
  margin-top: 20px;
  background-color: #0b0a0b;
  min-width: 360px;
  border: 1px solid #3a3a3a;
  padding: 0px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgb( 0 0 0 / 20% );
}

.dropdown-option {
  padding: 12px 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
  cursor: pointer;
}

.dropdown-option:hover {
  background: #222;
}

/* Style individual options */
.dropdown-options li {
  text-decoration: none;
  display: flex;
  flex-direction: column; /* Stack label and description vertically */
}

/* Style option content */
.option-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

/* Style option logos */
.dropdown-option img {
  width: 32px; /* Set the desired width for the logos */
  margin-bottom: 5px; /* Add spacing between the image and text */
  margin-top: 5px;
  margin-right: 8px;
}

.integration-option {
  color: #FFF;
}

/* Style option descriptions */
.option-description {
  color: #F5F7FF;
  opacity: 70%;
  text-align: center; /* Center-align the description */
}

/* Show options when the container is hovered */
.dropdown-container:hover .dropdown-box {
  display: block;
}

.description-content {
  display: flex;
  flex-direction: row;
}

