﻿/* إضافة نفس الخلفية والأنماط الخاصة بالصفحة السابقة */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    direction: rtl; /* جعل الاتجاه من اليمين لليسار */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #2a3d63; /* نفس الخلفية */
}

.thank-you-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .thank-you-container h1 {
        font-size: 2.5rem;
        color: #2a3d63;
        margin-bottom: 20px;
    }

    .thank-you-container p {
        font-size: 1.2rem;
        color: #555;
        margin-bottom: 30px;
    }

/* منع العودة للصفحة السابقة */
body {
    overflow: hidden;
}

/* تنسيق التذييل (footer) */
footer {
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
    font-size: 1rem;
    color: #fff;
}
