.menu .menu-sidebar-logo-parent {
    display: none !important;
}

.menu.is-active .menu-sidebar-logo-parent {
    display: flex !important;
}

/* RTL Button Color Fixes - Ensure consistent red color across all languages */
.btn-primary {
    --bs-btn-color: #fff !important;
    --bs-btn-bg: #ea1527 !important;
    --bs-btn-border-color: #ea1527 !important;
    --bs-btn-hover-color: #fff !important;
    --bs-btn-hover-bg: #c71221 !important;
    --bs-btn-hover-border-color: #bb111f !important;
    --bs-btn-focus-shadow-rgb: 237, 56, 71 !important;
    --bs-btn-active-color: #fff !important;
    --bs-btn-active-bg: #bb111f !important;
    --bs-btn-active-border-color: #b0101d !important;
    --bs-btn-disabled-color: #fff !important;
    --bs-btn-disabled-bg: #ea1527 !important;
    --bs-btn-disabled-border-color: #ea1527 !important;
    color: #fff !important;
    background-color: #ea1527 !important;
    border-color: #ea1527 !important;
    padding: 11px 25px !important;
}

.btn-primary:hover {
    color: #fff !important;
    background-color: #c71221 !important;
    border-color: #bb111f !important;
}

.btn-primary:focus,
.btn-primary.focus {
    color: #fff !important;
    background-color: #c71221 !important;
    border-color: #bb111f !important;
    box-shadow: 0 0 0 0.2rem rgba(237, 56, 71, 0.5) !important;
}

.btn-primary:active,
.btn-primary.active {
    color: #fff !important;
    background-color: #bb111f !important;
    border-color: #b0101d !important;
}

.btn-primary:disabled,
.btn-primary.disabled {
    color: #fff !important;
    background-color: #ea1527 !important;
    border-color: #ea1527 !important;
}

/* Additional button states for RTL */
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
    color: #fff !important;
    background-color: #bb111f !important;
    border-color: #b0101d !important;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.2rem rgba(237, 56, 71, 0.5) !important;
}
