.dp-plan-toggle {
    width: 340px;
    max-width: 100% !important;
    height: 40px;
    margin: 0 auto;
}

.dp-block-dentist-detail-plan-tabs .dp-plan-toggle {
    margin-top: 1.5rem;
}

.plan-toggle-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.plan-toggle-switch {
    width: 100%;
    height: 100%;
    background: #ececec;
    box-shadow: inset 0 0 0 2px #2445ea;
    border-radius: 999px;
    position: relative;
    display: flex;
    overflow: hidden;
    cursor: pointer;
    border: none;
    padding: 0;
}

.plan-toggle-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
	height: 100%;
}

.plan-toggle-option span {
    color: #2445ea;
    transition: color 0.3s ease;
}

.plan-toggle-switch::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 40px;
    background: linear-gradient(180deg, #2b47d2 0%, #2445ea 100%);
    border-radius: 999px;
    transition: transform 0.3s ease;
}

.individual-selected::before {
    transform: translateX(0);
}

.family-selected::before {
    transform: translateX(100%);
}

.individual-selected .individual span,
.family-selected .family span {
    color: #ffffff;
}
