  .bot-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    margin-top: 0px;
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;

    /* maior largura/altura */
    min-width: 265px;
    max-height: 700px;           /* altura maior com scroll */
    max-width: 86vw;
    width: max-content;

    overflow-y: auto;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    z-index: 1000;
  }


.bot-selector-wrapper {
    border-radius: 12px;
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
    padding: 0.55rem 1rem;
    position: relative;
}

/* .bot-selector-wrapper:hover {
  border-color: #8b5cf6;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.3); /* opcional, sombra roxa suave */

.bot-dropdown-item {
    padding: 0.35em 0.7em;
    /* Ajuste o padding conforme necessário */
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1001;
    white-space: nowrap;
    /* ❌ não quebra linha */
}

.bot-dropdown-item:last-child {
    border-bottom: none;
}

.bot-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.bot-dropdown-item.active,
.bot-dropdown-item.selected {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple);
    font-weight: 600;
}


.bot-dropdown-item.inactive {
    color: rgb(167, 10, 10);
}

/* .bot-dropdown-item.paused {
    color:#eab308;
  }   */

.bot-dropdown-item .dropdown-icon {
    font-size: 12px;
    opacity: 0.7;
}

.bot-dropdown::-webkit-scrollbar {
    width: 6px;
}

.bot-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}





.bot-nav-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;

    transition: all 0.2s ease;
    justify-content: center;
    position: relative;


    background-color: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.bot-nav-title:hover {
    border-color: var(--purple);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.bot-nav-title-tracking {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.bot-nav-title-2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}


.bot-nav-title i.fa-chevron-down,
.bot-nav-title-tracking i.fa-chevron-down {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.bot-nav-title.open i.fa-chevron-down,
.bot-nav-title-tracking.open i.fa-chevron-down {
    transform: rotate(180deg);
}

