.tcmt-dropdown {
    position: fixed;
    font-family: inherit;
    font-size: 13px;
    z-index: 9999;
    width: 60px;
}
.tcmt-dropdown-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    border: 1px solid #d4d8dd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    user-select: none;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}
.tcmt-dropdown-selected p {
    margin-block: 0;
}
.tcmt-dropdown-selected svg {
    height: 10px;
    width: 10px;
    color: inherit;

    transition: transform 0.25s ease;
}
.tcmt-dropdown.open svg {
    transform: rotate(180deg);
}
.tcmt-dropdown-list {
    position: absolute;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #d4d8dd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: none;
    z-index: 99;
    overflow-y: hidden;
}
.tcmt-dropdown-item {
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.15s;
}
.tcmt-dropdown-item:hover {
    background: #eef3ff;
}
/* active item highlight */
.tcmt-dropdown-item.active {
    background: #3a73ff;
    pointer-events: none;
    color: white;
}
