* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background-color: #F5F5DC;
    direction: rtl;
    text-align: center;
    margin: 0;
    padding: 0;
}

h2 {
    margin-top: 20px;
    color: #8B0000;
}

#date-container {
    background: #fff;
    width: 90%;
    max-width: 400px;
    margin: 10px auto;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

form {
    background: white;
    padding: 20px;
    margin: 15px auto;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overscroll-behavior: contain;
}

label {
    display: block;
    text-align: right;
    margin-top: 10px;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    text-align: center;
}

#phone {
    direction: ltr;
}

textarea {
    min-height: 80px;
    resize: vertical;
}

button {
    margin-top: 15px;
    background-color: #8B0000;
    color: white;
    padding: 12px;
    border: none;
    width: 100%;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

button:active {
    transform: scale(0.97);
}

footer {
    font-size: 14px;
    color: #555;
    margin: 15px;
}

#successMessage {
    display: none;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 10px;
    border-radius: 6px;
    width: 90%;
    max-width: 400px;
    margin: 10px auto;
}

#errorMessage {
    background:#ffebee;
    color:#c62828;
    padding:10px;
    margin:10px auto;
    width:90%;
    max-width:400px;
    border-radius:6px;
    text-align:center;
    font-size:14px;
}

.logo{
    max-width:140px;   /* غيّر الرقم حسب ما تحب */
    width:100%;
    height:auto;
}
.site-header{
    text-align:center;
    padding:20px 0;
    background:#fff;
    border-bottom:3px solid #c8a24d; /* ذهبي */
}

