.rtl-ltr-toggler-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 7px 7px;
    background-color: #ffd000;
    color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.rtl-ltr-toggler-btn:hover {
    background-color: #ffa600;
}

.rtl-ltr-toggler-btn svg {
    transition: transform 0.3s ease-in-out;
}

.rtl-ltr-toggler-btn:hover svg {
    transform: scaleX(-1);
}

body.rtl {
    direction: rtl;
}
