.tcmt-dropdown-addon {
    font-family: inherit;
    font-size: 13px;
    width: 60px;
}
.tcmt-dropdown-selected-addon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    cursor: pointer;
    user-select: none;
}
.tcmt-dropdown-selected-addon p {
    margin-bottom: 0 !important;
}
.tcmt-dropdown-selected-addon svg {
    height: 10px;
    width: 10px;
    color: inherit;

    transition: transform 0.25s ease;
}
.tcmt-dropdown.open-addon svg {
    transform: rotate(180deg);
}
.tcmt-dropdown-list-addon {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    border: 1px solid #d4d8dd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: none;
    z-index: 99;
    max-height: 200px;
    overflow-y: hidden;
}
.tcmt-dropdown-item-addon {
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.15s;
}
.tcmt-dropdown-item-addon:hover {
    background: #eef3ff;
}
.tcmt-dropdown-item-addon.active {
    pointer-events: none;
}
.tcmt-dropdown-selected-addon svg {
    height: 10px;
    width: 10px;
    color: inherit;

    transition: transform 0.25s ease;
}
.tcmt-dropdown-addon.open svg {
    transform: rotate(180deg);
}
