        /* Reset */
        body, h1, h2, p, pre {
            margin: 0;
            padding: 0;
        }

        /* Layout */
        body {
            font-family: 'Georgia', serif;
            background-color: #ece7dc;
            color: #2f2f2f;
            margin: 0;
            padding: 20px;
            line-height: 1.6;
            display: flex;
            flex-direction: row;
            justify-content: center;
        }

        .sidebar {
            width: 200px;
            margin-right: 20px;
        }

        .main-content {
            max-width: 900px;
        }

        .main-content p {
            margin-bottom: 1.5em; 
            text-align: justify;       
        }

        header {
            border-bottom: 2px solid #bfb393;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        .profile-info {
            background-color: #ddd3c4;
            padding: 10px;
            border-radius: 4px;
            margin-bottom: 20px;
            text-align: justify;
        }

        .profile-info img {
            width: 100px;
            height: 100px;
           /* border-radius: 50%; */
            margin-bottom: 10px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .profile-info p {
            margin-bottom: 8px;
        }

        .entry {
            margin-bottom: 40px;
        }

        .entry-title {
            font-size: 1.8em;
            font-weight: bold;
            margin-bottom: 5px;
            color: #4b3829;
        }

        .entry-date {
            font-size: 0.9em;
            color: #6f6658;
        }

        pre {
            background-color: #e8e3d8;
            padding: 10px;
            overflow-x: auto;
            font-family: 'Courier New', Courier, monospace;
            border-radius: 4px;
            white-space: pre-wrap;
            word-wrap: break-word;
        }

        a {
            color: #89532a;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .links {
            margin-top: 20px;
        }

        /* Responsive Design */
        @media (max-width: 600px) {
            body {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
                margin-right: 0;
                margin-bottom: 20px;
            }

            .entry-title {
                font-size: 1.5em;
            }
        }
/* General table styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th, td {
  padding: 12px 15px; /* Add space inside cells */
  text-align: left; /* Align text to the left */
  border: 1px solid #ddd; /* Light border for clarity */
}

th {
  background-color: #f4f4f4; /* Light gray background for header */
  font-weight: bold; /* Make header text bold */
  color: #333; /* Darker text color for contrast */
}

tr:nth-child(even) {
  background-color: #f9f9f9; /* Stripe the rows with alternating colors */
}

tr:hover {
  background-color: #f1f1f1; /* Highlight rows on hover */
}

/* Add spacing between table and surrounding elements */
table + p {
  margin-top: 1em;
}

/* Responsive styling */
@media (max-width: 768px) {
  table {
    font-size: 14px; /* Slightly smaller text on smaller screens */
  }

  th, td {
    padding: 10px; /* Less padding on smaller screens */
  }
}
