/* General Body Styles */
body {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
header {
    text-align: left;
    margin-bottom: 60px;
}

.profile-name {
    font-size: 3em;
    font-weight: normal;
    margin-bottom: 0.2em;
}

.profile-title {
    font-size: 1.3em;
    color: #555;
    margin: 0;
}

.profile-contact {
    font-size: 1em;
    color: #555;
    margin-top: 10px;
}

.profile-contact a {
    color: #555;
    text-decoration: none;
}

.profile-links {
    margin-top: 20px;
}

.profile-links a {
    text-decoration: none;
    color: #000;
    margin-right: 20px;
    font-weight: normal;
    border-bottom: 1px solid #ccc;
}

/* Sections */
section {
    margin-bottom: 40px;
}

h2 {
    font-size: 1.5em;
    color: #000;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 25px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Publications */
.publication-list {
    list-style: none;
    padding: 0;
}

.publication-item {
    margin-bottom: 25px;
}

.publication-title {
    font-weight: bold;
    font-size: 1.1em;
}

.publication-authors {
    font-style: normal;
    color: #555;
}

.publication-venue {
    color: #555;
}

.publication-link {
    margin-left: 10px;
    text-decoration: none;
    color: #0077b5;
    font-weight: bold;
}

/* Mentoring */
.mentoring-list {
    list-style: none;
    padding: 0;
}

.mentoring-item {
    margin-bottom: 15px;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 60px;
    color: #999;
    font-size: 0.9em;
}

/* Project styles */
.project {
    margin-bottom: 25px;
}

.project h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Affiliation styles */
#background ul {
    list-style: none;
    padding: 0;
}

#background .affiliation {
    margin-bottom: 15px;
}

#background .affiliation h3 {
    margin-bottom: 0;
    font-size: 1.1em;
}

#background .affiliation p {
    margin-top: 0;
    color: #555;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    float: right;
}

/* Dark Mode */
body.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}

body.dark-mode h1, body.dark-mode h2, body.dark-mode h3 {
    color: #e0e0e0;
}

body.dark-mode .profile-title, body.dark-mode .profile-contact, body.dark-mode .profile-contact a {
    color: #bbb;
}

body.dark-mode .profile-links a {
    color: #e0e0e0;
    border-bottom-color: #555;
}

body.dark-mode h2 {
    border-bottom-color: #555;
}

body.dark-mode .publication-authors, body.dark-mode .publication-venue {
    color: #bbb;
}

body.dark-mode a {
    color: #66b2ff;
}

body.dark-mode #background .affiliation p {
    color: #bbb;
}

#dark-mode-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px;
    background: #ccc;
    border: none;
    cursor: pointer;
}

body.dark-mode #dark-mode-toggle {
    background: #555;
    color: #e0e0e0;
}
