/* Basic styling for the body element */
body {
    font-family: Georgia, serif;
    background-color: #16120f; /* Deep, dark brown, like an old study */
    margin: 5px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    color: #c2b79b; /* Faded parchment text, like aged book pages */
}

/* Container to center the content and apply styles */
.container {
    width: 90%;
    max-width: 900px;
    background-color: #2a211c; /* Dark walnut brown, like old bookshelves */
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4); /* Deeper shadow for cozy depth */
    border-radius: 8px;
    border: 1px solid #8b6f48; /* Antique gold-brown for a worn touch */
}

/* Styling for the main heading */
h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #dac7a3; /* Warm ivory, like old parchment */
}

/* Table styling */
.article-list {
    width: 100%;
    border-collapse: collapse; /* Removes gaps between table cells */
}

/* Styling for table headers and data cells */
.article-list th, .article-list td {
    padding: 12px;
    border: 1px solid #6e5a41; /* Aged bronze for a classic touch */
    text-align: left;
    color: #c2b79b; /* Warm parchment tone */
}

/* Styling for table header cells */
.article-list th {
    background-color: #3c2f24; /* Aged leather brown */
    font-weight: bold;
}

/* Zebra-striping for even rows */
.article-list tr:nth-child(even) {
    background-color: #2f261e; /* Dark mahogany, subtle contrast */
}

/* Hover effect for table rows */
.article-list tr:hover {
    background-color: #4a3a2b; /* Warm sepia brown on hover */
}

/* Styling for links inside the table */
.article-link {
    text-decoration: none;
    color: #b88a5a; /* Muted antique gold */
}

/* Hover effect for links */
.article-link:hover {
    text-decoration: underline;
    color: #d4a76a; /* Brighter gold, like candlelight */
}
