:root, [data-theme=light] {
    --gcm-bg: #000000;
    --gcm-text: #FFFFFF;
    --gcm-hover: #FFFFFF1A;
    --gcm-success: #00FF00;
    --gcm-border: var(--tt-color-text-neutral-medEmphasis);
    --gcm-shadow: 0px 15px 40px 0px rgba(0, 40, 85, 0.15);
}
[data-theme=dark] {
    --gcm-bg: var(--tt-color-accent-primary-100);
    --gcm-text: var(--tt-color-accent-primary-800);
    --gcm-border: var(--tt-color-text-neutral-medEmphasis);
}
.gcm-wrapper {
    position: fixed;
    display: none;
    background: var(--gcm-bg);
    color: var(--gcm-text);
    border-radius: 16px;
    box-shadow: var(--gcm-shadow);
    z-index: 1000000;
    min-width: 268px;
    font-family: sans-serif;
    overflow: hidden;
}
.gcm-item {
    width: 100%;
    display: none;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    color: inherit;
    padding: 21px 24px;
    cursor: pointer;
    font-size: 14px;
    text-align: left;
}
.gcm-item.active {
    display: flex;
}
.gcm-item.active:first-child {
    border-radius: 16px 16px 0 0;
}
.gcm-item.active:last-child {
    border-radius: 0 0 16px 16px;
}
.gcm-item:hover {
    background: var(--gcm-hover);
}
button.gcm-item:focus {
    outline: unset;
}
.gcm-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.gcm-divider {
    display: none;
    height: 1px;
    background: var(--gcm-border);
}
.gcm-divider.active {
    display: block;
}