/* עיצוב כללי של הדף */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    direction: rtl; /* כיוון הטקסט מימין לשמאל */
    display: flex; /* תצוגה גמישה */
    justify-content: center; /* יישור אופקי למרכז */
    align-items: center; /* יישור אנכי למרכז */
 //   height: 100vh; /* גובה מלא של הדף */
}

/* עיצוב למתג השפה */
.language-switch {
    text-align: left;
    margin-bottom: 20px;
}

/* עיצוב תמונת הלוגו */
.seoLogo {
    width: 120px; /* רוחב הלוגו */
    height: auto; /* גובה אוטומטי לשמירה על יחס גובה-רוחב */
    display: block; /* תצוגה בלוק */
    margin: 20px auto 20px auto; /* יישור למרכז עם ריווח עליון ותחתון */
    border: 3px solid gold; /* מסגרת זהב */
    border-radius: 50%; /* פינות מעוגלות */
    background-color: white; /* צבע רקע לבן */
    padding: 1px; /* ריווח פנימי */
}


.language-switch a {
    text-decoration: none;
    color: blue;
    font-weight: bold;
}

/* עיצוב כותרת הטופס */
h1 {
    text-align: center;
    color: #333;
}

/* עיצוב הטופס */
form {
    max-width: 600px;
    margin: 50px 0; /* יישור מרכזי */
    padding: 20px;
    border: 7px double gold;
    background-color: #fff;
    border-radius: 10px;
}

/* עיצוב תוויות הטופס */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

/* עיצוב שדות הקלט והטקסט */
input, textarea {
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* עיצוב כפתור השליחה */
button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: gold;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #e6b800;
}

/* עיצוב לדף באנגלית */
body.en {
    direction: ltr; /* כיוון הטקסט משמאל לימין */
}

body.en .language-switch {
    text-align: right;
}

body.en #form-title {
    text-align: center;
}

body.en label {
    text-align: left;
}

/* עיצוב לדף התודה */
.confirmation-container {
    background: #fff; /* צבע רקע */
    padding: 20px; /* ריווח פנימי */
    border-radius: 8px; /* פינות מעוגלות */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* צל */
    max-width: 500px; /* רוחב מקסימלי */
    width: 100%; /* רוחב מלא */
    text-align: center; /* יישור טקסט למרכז */
    display: flex; /* תצוגה גמישה */
    flex-direction: column; /* כיוון גמיש לעמודה */
    justify-content: center; /* יישור אופקי למרכז */
    align-items: center; /* יישור אנכי למרכז */
    margin: 50px auto; /* ריווח חיצוני */
}

/* עיצוב כותרת דף התודה */
.confirmation-container h2 {
    color: gold; /* צבע טקסט */
}

/* עיצוב פסקאות דף התודה */
.confirmation-container p {
    color: #666; /* צבע טקסט */
}

/* עיצוב קישורים בדף התודה */
.confirmation-container a {
    display: inline-block; /* תצוגה בלוק אינליין */
    margin-top: 20px; /* ריווח עליון */
    padding: 10px 20px; /* ריווח פנימי */
    background-color: gold; /* צבע רקע */
    color: #fff; /* צבע טקסט */
    text-decoration: none; /* ללא קו תחתון */
    border-radius: 4px; /* פינות מעוגלות */
}

/* עיצוב קישורים בדף התודה במעבר עכבר */
.confirmation-container a:hover {
    background-color: #d4af37; /* צבע רקע במעבר עכבר */
}

/* עיצוב כפתורים זה לצד זה */
.confirmation-container .button-container {
    display: flex; /* תצוגה גמישה */
    justify-content: center; /* יישור אופקי למרכז */
    gap: 10px; /* ריווח בין הכפתורים */
}
