/* تنسيق عام */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* العنوان */
header h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #343a40;
}

/* معلومات العدد */
.info {
    text-align: center;
    margin-bottom: 20px;
    color: #555;
    font-size: 18px;
}

.info strong {
    color: #007bff;
}

/* أزرار التحكم */
.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.buttons button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buttons button:hover {
    background-color: #0056b3;
}

.buttons a {
    text-decoration: none;
}

.buttons form {
    display: inline;
}

/* الجدول */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

table th, table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #dee2e6;
}

table thead {
    background-color: #343a40;
    color: white;
}

table tbody tr:nth-child(odd) {
    background-color: #f8f9fa;
}

table tbody tr:hover {
    background-color: #e9ecef;
}

table td {
    font-size: 16px;
}