body {
    font-family: Arial, sans-serif;
    direction: rtl;
    text-align: center;
    background-color: #f4f4f4;
    padding: 20px;
}

h1 {
    color: #333;
}

.form-container {
    margin-bottom: 20px;
}

input,
select,
button {
    padding: 10px;
    margin: 5px;
}

button {
    background-color: #0078d4;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #005ea6;
}

table {
    width: 80%;
    margin: auto;
    border-collapse: collapse;
    background-color: white;
}

th,
td {
    border: 1px solid #ddd;
    padding: 10px;
}

th {
    background-color: #0078d4;
    color: white;
}