.toggle-switch {
    position: relative;
    width: 192px;
    height: 48px;
    background-color: white;
    border-radius: 24px;
    cursor: pointer;
    border: 1px solid #d1d5db;
    overflow: hidden;
    float: right;
    top: 30px;
}
.slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 96px;
    height: 40px;
    background-color: #ef4444;
    border-radius: 20px;
    transition: transform 0.3s ease;
}
.toggle-switch.industry .slider {
    transform: translateX(88px);
}
.toggle-switch span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s ease;
    width: 70px;
    text-align: center;
}
.toggle-switch .uni {
    left: 16px;
    color: white;
}
.toggle-switch .industry {
    right: 16px;
    color: #ef4444;
}
.toggle-switch.industry .uni {
    color: #ef4444;
}
.toggle-switch.industry .industry {
    color: white;
}