/* © 2025 Romar Jabez */

.switch-label {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

.switch-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.switch-toggle {
    display: flex;
    cursor: pointer;
    position: relative;
    width: 45px;
    height: 15px;
}

.switch-toggle input {
    display: none;
}

.slider {
    position: absolute;
    width: 40px;
    height: 15px;
    background-color: #a7cba3;
    box-shadow: 0px 0px 6px 0px rgb(0, 0, 0, 0.4);
    border-radius: 60px;
    transition: background-color 0.3s ease;
}

.switch-toggle .slider:active,
.switch-toggle .slider.pressed {
    background-color: #7a9178;
}

.switch-toggle .slider::before {
    content: "\f00d";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    width: 25px;
    height: 25px;
    background-color: #2f3c2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #a7cba3;
    transition: transform 0.2s ease, content 0.2s ease;
    transform: translate(-5px, -5px);
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.8);
}

.switch-toggle input:checked + .slider::before {
    content: "\f00c";
    transform: translate(20px, -5px);
}

.switch-toggle input:checked + .slider {
    background-color: #51724f;
}
