/* --- Monochromatic Retro Style CSS --- */
body {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    background-color: #ffffff; /* Pure white background */
    color: #000000; /* Pure black text */
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 750px;
    margin: 0 auto; /* Center the layout */
    padding: 30px;
    background-color: #ffffff; /* White content area */
    /* border: 1px solid #000000; */
}

header {
    text-align: center;
    border-bottom: 2px solid #000000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
    font-weight: bold;
}

header p {
    font-size: 1.1em;
    margin: 5px 0 0;
    font-style: italic;
}

nav {
    text-align: center;
    margin-bottom: 30px;
}

nav a {
    margin: 0 15px;
    color: #000000; /* Black links to fit the theme */
    text-decoration: underline; /* Classic underline */
    font-weight: bold;
}

/*
      nav a:hover {
          color: #555555;
          text-decoration: none;
      }
*/

a {
    color: #000000;
}

a:hover {
    color: #ffffff;
    background-color: #000000;
    text-decoration: none;
}

h2 {
    font-size: 1.8em;
    /* border-bottom: 1px solid #000000; */
    padding-bottom: 0px;
    margin-top: 30px;
    margin-bottom: 10px;
}

p {
    /* margin-left: 5px; */
    /* text-indent: 2em; */
    /* text-align: justify; */
    hyphens: auto;
}

main p {
    text-align: justify;
    padding: 0 3px;
}

ul {
    list-style-type: square; /* Square bullet points */
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

.publication strong {
    font-weight: bold; /* Highlight your name */
}

.publication .venue {
    font-style: italic; /* Italicize the venue */
}

hr {
    border: 0;
    height: 1px;
    background: #000000; /* Simple black horizontal line */
    margin-top: 30px;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    /* border-top: 1px solid #000000; */
    font-size: 0.9em;
    color: #666666; /* Lighter grey text for the footer */
}

footer p{
    text-align: center;
}

a[link] {
    color: #000000; /* Black links to fit the theme */
    text-decoration: underline; /* Classic underline */
}

a[link]:hover {
    color: #ffffff;
    background-color: #000000;
    text-decoration: none;
}

.expandable summary {
    cursor: pointer;
}

