.anonymous-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    gap: 6px;
}

.anonymous-toggle-label i {
}

.anonymous-toggle-label span {
    font-weight: 500;
    font-size: inherit;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2f3335;
    border-radius: 24px;
    transition: 0.3s;
}

.toggle-slider:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #666;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked+.toggle-slider {
    background-color: var(--primary);
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(20px);
    background-color: black;
}

.toggle-slider:hover {
    background-color: #3a3c3e;
}

.anonymous-avatar {
    background: black;
    color: white;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 36px;
    height: 36px;
}

.anonymous-author-name {
    color: white;
    cursor: none;
    pointer-events: none;
}

.anonymous-author-name:hover {
    text-decoration: none !important;
}

.you-badge {
    display: inline-block;
    background-color: black;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}