:root {
    --form-width: 400px;
    --box-padding: 20px;
    --box-radius: 12px;
    --primary-color: #007bff;
    --secondary-color: #c6f1f2;
    --background-dark: #4a00ff;
    --success-color: #00b894;
}

body {
    margin: 0;
    background-color: #ffffff;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    padding-right: 270px; /* ✅ إزاحة بسبب القائمة الجانبية */
}

/* الحاوية العامة */
.main-content {
    padding: 40px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* تخطيط الصفحة */
.page-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}

/* صناديق التحويل */
.convert-box {
    background-color: var(--background-dark); /* بنفسجي */
    padding: var(--box-padding);
    border-radius: var(--box-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.convert-box h2 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

/* نموذج التحويل */
.convert-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.convert-form input[type="file"] {
    width: var(--form-width);
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    background-color: var(--secondary-color); /* سماوي فاتح */
    color: #000;
    border: none;
    margin-bottom: 20px;
    text-align: center;
    outline: none;
    cursor: pointer;
}

.convert-form button {
    width: var(--form-width);
    padding: 14px;
    font-size: 16px;
    background-color: #ffffff; /* أبيض */
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.convert-form button:hover {
    background-color: #f0f0f0;
}

/* رابط التحميل */
.download-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: var(--success-color);
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.download-link:hover {
    background-color: #009e77;
}

/* رسائل الخطأ */
.error-message {
    margin-top: 20px;
    color: #ff5252;
    font-weight: bold;
    text-align: center;
}
