body {
    font-family: 'Amiri', serif;
    background-color: #f8f3e6;
    /* Warm parchment-like color */
    background-image: url('data:image/svg+xml,%3Csvg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M20 20 L30 20 L25 25 Z" fill="%23e8d5b5" opacity="0.3"/%3E%3C/svg%3E');
    margin: 0;
    padding: 20px;
    color: #333;
    line-height: 1.6;
    /*direction: rtl;*/
}

h1 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: 'Amiri', serif;
}

h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 1.0em;
    margin-bottom: 20px;
    font-family: 'Amiri', serif;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 2px solid #2c3e50;
}

.table {
    direction: ltr;
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.table th,
.table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
    font-family: 'Amiri', serif;
}

.table th {
    background-color: #16a085;
    color: white;
    font-size: 1.1em;
}

.table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.table tr:hover {
    background-color: #e0f7fa;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #2c3e50;
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-family: 'Amiri', serif;
}