.language-selector {
    direction: rtl;
}

.services-section {
    direction: rtl;
    text-align: right;
}

.service-card {
    direction: rtl;
    text-align: right;
}

.date-picker-container {
    direction: rtl;
    text-align: right;
}
.header-nav{
    direction: rtl;
}
.header-nav i {
    transform: scaleX(-1);
}

.booking-value span {
    direction: ltr;
    unicode-bidi: embed;
    display: inline-block;
}

.booking-items i {
    margin-right: 0 !important;
    margin-left: 0.25rem !important;
}
#phone-number{
    border-right: 0 !important;
    border: 1px solid #E0E0E0 !important;
    text-align: right;
    border-right: none !important;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
}

#dropdown-country-button{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: var(--bs-btn-border-radius);
    border-bottom-right-radius: var(--bs-btn-border-radius);

}
#dropdown-country-button img{
    margin-left: 8px;
    margin-right: 0;
}
.dropdown-toggle::after{
    margin-right: .255em;
    margin-left: 0;

}
.refund-info{
    text-align: left !important;
}
.form-check{
    padding-right: 1.5em;
}
.form-check .form-check-input{
    float: right;
    margin-right: -1.5em;
    margin-left: 0;
}
.calendar-prev img{
    transform: scaleX(-1);
}
.calendar-next img{
        transform: scaleX(-1);

}
.booking-label {
    text-align: right !important;
}
.file-info{
    border-right: 4px solid #3b82f6;
    border-left: 0;
}
.booking-details{
    direction: rtl;
}
.location-icon-wrapper i{
    transform: scaleX(-1);
}
.participant-number{
    margin-left: 8px;
    margin-right: 0;
}
.participant-badge {
    margin-left: 8px;
    margin-right: 0;
}
.participants-header i{
    margin-left: 8px;
    margin-right: 0;
}
.participants-section .alert-info i{
    margin-left: 8px;
    margin-right: 0;
}

/* Timezone Alert RTL Styles */
.timezone-toast {
    direction: rtl;
    /* Desktop: Fixed positioned on left for RTL */
    right: auto;
    left: 20px;
    animation: slideInLeft 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timezone-toast-close {
    margin-left: 0;
    margin-right: 4px;
}

.timezone-toast-content p {
    text-align: right;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* RTL Responsive timezone alert */
@media (max-width: 768px) {
    .timezone-toast {
        direction: rtl;
        /* Mobile: Inline positioning */
        left: auto;
        right: auto;
        animation: fadeIn 0.4s ease-out;
    }

    .timezone-toast-close {
        left: 12px;
        right: auto;
        margin-right: 0;
