/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    position: relative;
    z-index: 0;
    padding: 20px; /* اضافه کردن padding به body */
}

.container {
    width: calc(100% - 40px); /* حذف padding از 20px هر طرف */
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto; /* تنظیم حاشیه بالا و پایین به 20px و اتوماتیک در کنارها */
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    color: #333;
    margin-bottom: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th,
table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

table th {
    background-color: #f2f2f2;
}

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

footer {
    margin-top: 20px;
    text-align: center;
}

button[type="submit"] {
    padding: 10px 20px;
    background-color: #4CAF50; /* رنگ پس زمینه */
    color: white; /* رنگ متن */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #45a049; /* رنگ پس زمینه هنگام هاور */
}

textarea {
    width: calc(100% - 22px); /* تنظیم عرض تکست باکس */
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.red-text {
    color: #cc0000; /* رنگ متن ردیف هایلایت شده */
}
.highlight-blue {
    background-color: #a0c5e8; /* Replace with your desired shade of blue */
}
.background-color: skyblue;
