.language-switcher {
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
}

.language-option {
    padding: 0 2px;
    color: #ffc400; /* Yellow for ID */
    font-weight: bold;
}

.language-option.en {
    color: white; /* White for EN */
}

.switch {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 20px;
    margin: 0 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: rgb(0, 47, 141);
    transition: .4s;
}

input:checked + .slider {
    background-color: #acacac;
}

input:checked + .slider:before {
    transform: translateX(15px);
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
}

.slider.round {
    border-radius: 20px;
}

.slider.round:before {
    border-radius: 50%;
}