.segmented{
    position: relative;
    width: 300px;
    height: 45px;
    background: #e5e7eb;
    border-radius: 25px;
    display: flex;
    overflow: hidden;
    margin: 15px auto;
}

.segmented .slider{
    position: absolute;
    width: 100px;
    height: 100%;
    background: black;
    border-radius: 25px;
    transition: left 0.3s ease;
    left: 0;
    top: 0;
}

.segmented button{
    flex: 1;
    border: none;
    background: transparent;
    z-index: 1;
    font-weight: 600;
    cursor: pointer;
    color: #111827;
}

.segmented button.active{
    color: white;
}