/*
Theme Name:     Hello Elementor Child
Template:       hello-elementor

Right to Left (RTL) support
*/

/* בסיס */
html,
body {
    direction: rtl;
    text-align: right;
}

/* טקסטים */
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
span,
a,
label {
    text-align: right;
}

/* טפסים */
input,
textarea,
select {
    direction: rtl;
    text-align: right;
}

/* Placeholder */
::placeholder {
    text-align: right;
}

/* רשימות */
ul,
ol {
    padding-right: 1.2em;
    padding-left: 0;
}

/* ציטוטים */
blockquote {
    border-right: 4px solid #ddd;
    border-left: none;
    padding-right: 15px;
    padding-left: 0;
}

/* טבלאות */
table {
    direction: rtl;
}

th,
td {
    text-align: right;
}

/* קישורים */
a {
    direction: rtl;
}