body {
    font-family: Arial; 
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}

.contact-form {
    max-width: 500px;
    margin: 50px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.contact-form input[type="tel"] {
       direction: rtl;
   }


.contact-form input[type="submit"] {
    background-color: #00b3b3;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.contact-form input[type="submit"]:hover {
    background-color: #098181;
}

button {
    background-color: #00b3b3; 
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 10vh;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100vh; 
    max-width: 40vh; 
    display: block;
    margin: 20px auto; 
    text-align: center;
}

button:hover {
    background-color: #00b3b3; /* כהה יותר בעת ריחוף */
    transform: scale(1.05);
}

button:active {
    transform: scale(0.95);
}

button:focus {
    outline: none;
    box-shadow: 0 0 8px color #00b3b3;
}



.home-button {
    position: fixed; 
    bottom: 20px;    
    right: 0px;     
    display: flex;   
    align-items: center;
    justify-content: center;
    width: 60px;     /* גודל הכפתור */
    height: 100px;    /* גובה הכפתור */
    color: #000000;    /* צבע האייקון */
    border-radius: 50%; /* צורה עגולה */
}

.home-button:hover {
    background-color: #ffffffab; 
}

ion-icon {
    font-size: 27px; 
}

#action {
    color: #00b3b3;
}

footer {
    text-align: center;
    padding: 1px 0;
    background-color: #333;
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 6%;
}
