/*
Theme Name: Hello Elementor Child
Theme URI: https://example.com/
Description: Child theme for Hello Elementor
Author: Your Name
Author URI: https://example.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

table {
    width: 100%; /* جدول 80 درصد عرض صفحه نمایشگر را می‌گیرد */
    margin: auto; /* جدول در مرکز صفحه قرار می‌گیرد */
    border-collapse: collapse; /* ادغام خطوط جدول */
}

table, th, td {
    border: 1px solid black; /* خطوط برای کل جدول، تیتر و سلول‌ها */
}

th, td {
    padding: 10px; /* فاصله داخل سلول‌ها */
    text-align: center; /* متن وسط‌چین */
}

th {
    background-color: #f2f2f2; /* رنگ پس‌زمینه تیتر‌ها */
}

tr:nth-child(even) {
    background-color: #F5F3F6; /* رنگ پس‌زمینه سطرهای زوج */
}

tr:nth-child(odd) {
    background-color: #ffffff; /* رنگ پس‌زمینه سطرهای فرد */
}
