/* ملف تنسيقات واجهة نظام التواصل - style.css */

/* إعداد الخط العام */
body {
    font-family: "Tahoma", "Arial", sans-serif;
    direction: rtl; /* دعم اللغة العربية */
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
    color: #333;
}

/* ترويسة الصفحات */
header {
    background-color: #2e86de;
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

/* تذييل الصفحة */
footer {
    background-color: #dfe6e9;
    color: #555;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* الحاوية العامة */
.container {
    width: 90%;
    max-width: 900px;
    margin: 30px auto;
    background-color: white;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

/* نماذج الإدخال */
form input[type="text"],
form input[type="email"],
form input[type="password"],
form textarea,
form select {
    width: 100%;
    padding: 10px;
    margin: 8px 0 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
}

/* الأزرار */
button,
input[type="submit"] {
    background-color: #0984e3;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover,
input[type="submit"]:hover {
    background-color: #74b9ff;
}

/* جدول العملاء */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

table th {
    background-color: #dfe6e9;
    cursor: pointer;
}

table tr:nth-child(even) {
    background-color: #f1f2f6;
}

/* حقل البحث */
#search {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* تنبيه النجاح */
.success {
    background-color: #dff9fb;
    color: #27ae60;
    padding: 10px;
    border: 1px solid #7bed9f;
    margin-bottom: 15px;
    border-radius: 5px;
}

/* تنبيه الخطأ */
.error {
    background-color: #ffcccc;
    color: #c0392b;
    padding: 10px;
    border: 1px solid #e17055;
    margin-bottom: 15px;
    border-radius: 5px;
}

/* عناوين فرعية */
h1, h2, h3 {
    color: #2d3436;
    margin-bottom: 10px;
}
