
body {
    margin: 0;
    margin-left: 100px;  /* Adjust the value as needed */
    margin-right: 100px; /* Adjust the value as needed */
    /* font-family: "Times New Roman", Times, serif; */
}
.farsi {
    direction: rtl;
    text-align: right;
    /* font-family: "Times New Roman", Times, serif; */
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    color: #459b20;
    padding: 10px 20px;
    z-index: 1000; /* Ensures the header is above other content */
}

.header-content {
    display: flex;
    justify-content: space-between; /* Space between items */
    align-items: center; /* Center items vertically */
}

.header-content h1 {
    margin: 0; /* Remove default margin */
}

nav ul {
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    display: flex; /* Display items in a row */
}

nav ul li {
    margin-left: 20px; /* Space between links */
}

nav ul li a {
    color: blue; /* Link color */
    text-decoration: none; /* Remove underline */
}

nav ul li a:hover {
    text-decoration: underline; /* Underline on hover */
}

main {
    padding-top: 180px; /* Space for the fixed header */
}

.content {
    display: flex; /* Use Flexbox for side-by-side layout */
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    padding: 1px; /* Padding around the content */
    /* border: 5px solid #9FAFDF; /1* Border for separation *1/ */
}

.content div {
    width: auto; /* Allow width to be determined by content */
    display: inline-block;
    vertical-align: baseline;
    margin: 0px; /* Space between the columns */
    padding: 10px; /* Padding inside each column */
    background-color: white; /* Light background for visibility */
    border-style: ridge;
    border-color: Gold;
    border-width: 7px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.content div img {
    max-width: 100%; /* Ensure images do not overflow their container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove bottom space caused by inline-block */
    margin: 0 auto; /* Center the image horizontally */
}

.hr-red {
    border: none;
    border-top: 2px solid MediumOrchid;
    width: 60%;
    margin: 20px auto;
    background-color: white;
}


.footer {
    background-color: white;
    text-align: left;
    padding: 10px 0;
    /* color: #838383; */
    color: #de1212;
    font-weight: bold;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border-style: ridge;
    border-color: Gold;
    border-width: 7px;
    padding: 8px;
    text-align: center;
}

th {
    background-color: lightcyan;
}

.entrymain {
    width: auto; /* Allow width to be determined by content */
    display: inline-block;
    vertical-align: top;
    /* margin: 0px; /1* Space between the columns *1/ */
    padding: 20px; /* Padding inside each column */
    background-color: white; /* Light background for visibility */
    border-style: ridge;
    border-color: Gold;
    border-width: 7px;
    padding-top: 70px; /* Space for the fixed header */
}

.centerimg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.index-title {
    /* font-family: Arial, Helvetica, sans-serif; */
    font-size: 23px;
    font-weight: bold;
}

.index-title a {
    text-decoration: none;
}
