body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 20px;
    background-color: #f4f4f4;
    color: #333;
}

#container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: relative; /* Needed for positioning the profile picture */
}

/* --- Profile Picture Style --- */
.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%; /* Makes the image a circle */
    object-fit: cover; /* Prevents the image from being distorted */
    position: absolute;
    top: 20px;
    right: 20px;
    border: 3px solid #fff;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

h1, h2, h3 {
    color: #333;
}

h1 {
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-right: 150px; /* Make space for the profile picture */
}

h2 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-top: 40px;
}

a {
    color: #0077cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

li:last-child {
    border-bottom: none;
}

p {
    margin: 10px 0;
}

/* --- Publication Layout Styles --- */
.publication {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between text and image */
}

.pub-info {
    flex: 1; /* Allows the text to take up the remaining space */
}

.pub-image img {
    max-width: 150px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

/* --- LinkedIn Embed Style --- */
.linkedin-embed {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* --- Spotlight Style --- */
.spotlight {
    color: red; /* Bright red color */
    font-weight: bold; /* Make it bold for emphasis */
}
