/* styles.css */

/* إعدادات الصفحة */
body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
	text-align: center; /* لتوسيط المحتوى أفقياً */
}

label {
            display: inline-block; /* لتجنب مشاكل التصميم */
            padding: 5px 10px; /* مساحة داخلية */
            border: 1px solid #ccc; /* إطار المربع */
            background-color: #f9f9f9; /* لون الخلفية */
            border-radius: 5px; /* زوايا دائرية */
            font-size: 15px; /* حجم النص */
            font-family: Arial, sans-serif; /* نوع الخط */
            text-align: center; /* محاذاة النص */
            margin: 0; /* مسافة خارجية */
        }

/* الحاوية */
.container {
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 800px;
}

/* عنوان الصفحة */
h1 {
    text-align: center;
    margin-bottom: 30px;
}

/* تنسيق الجدول */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
table, th, td {
    border: 1px solid #ddd;
}
th, td {
    padding: 10px;
    text-align: center;
}
th {
    background-color: #3498db;
    color: white;
}
td {
    background-color: #f8f8f8;
}

/* النص الإجمالي */
.total {
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
}

/* زر الإجراء */
button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    text-decoration: none;
}
button:hover {
    background-color: #2980b9;
}
.phone-icon .fa-stack {
    font-size: 2.5rem; /* تغيير الحجم حسب المطلوب */
    width: 3.5rem; /* حجم الدائرة */
    height: 3.5rem; /* حجم الدائرة */
}

.whatsapp-icon .fa-stack {
    font-size: 2.5rem; /* تغيير الحجم حسب المطلوب */
    width: 3.5rem; /* حجم الدائرة */
    height: 3.5rem; /* حجم الدائرة */
}

.phone-icon .fa-circle-thin,
.whatsapp-icon .fa-circle-thin {
    font-size: 3.5rem; /* حجم الدائرة الخارجية */
}

.phone-icon .fa-phone,
.whatsapp-icon .fa-whatsapp {
    font-size: 1.5rem; /* حجم الأيقونة الداخلية */
}

