.status-toggle {
    display: inline-flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 14px;
    padding: 2px;
    box-shadow: inset 0 1px 3px rgba(31, 45, 72, 0.1);
    flex-shrink: 0;
}

.status-toggle__option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    color: #666;
    background: transparent;
    white-space: nowrap;
}

.status-toggle__option.is-selected {
    color: #fff;
    background: #9CB897;
    box-shadow: 0 1px 3px rgba(156, 184, 151, 0.25);
}

.status-toggle__option:not(.is-selected):hover {
    color: #444;
}
