.publications-list {
    list-style: none;
    padding: 0;
}
.publications-list li {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}
.pub-title {
    font-weight: 600;
    color: #fefefe;
    font-size: 1.15rem;
}
.pub-authors, .pub-journal, .pub-citation {
    color: #e0e0e0;
    font-size: 1rem;
}
.pub-citation {
    font-style: italic;
    color: #fefefe;
    font-size: 0.98rem;
}
body {
    background: #181818;
    color: #f5f5f5;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.navbar {
    background: #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}
.nav-title {
    font-size: 1.7rem;
    font-weight: 600;
    color: #fcfcfc;
    letter-spacing: 1px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav-links li a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
}
.nav-links li a:hover {
    background: #333;
    color: #7fdfff;
}

main {
    max-width: 900px;
    width: 100%;
    margin: 2rem auto;
    padding: 0 1vw;
    box-sizing: border-box;
}
.section {
    padding: 2rem 0;
}
.navbar {
    background: #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100vw;
}
a {
    color: #7fdfff;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: #b2f7ef;
}
input, textarea, button {
    background: #181818;
    color: #f5f5f5;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 0.7rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}
button {
    background: #7fdfff;
    color: #181818;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}
button:hover {
    background: #b2f7ef;
}
footer {
    text-align: center;
    padding: 2rem 0 1rem 0;
    color: #888;
    font-size: 1rem;
}

@media (max-width: 900px) {
    main {
        max-width: 100vw;
        padding: 0 2vw;
    }
    .nav-container {
        max-width: 100vw;
        padding: 0 2vw;
    }
}

@media (max-width: 700px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 2vw;
    }
    .nav-title {
        margin-bottom: 0.5rem;
        font-size: 1.3rem;
    }
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    main {
        max-width: 100vw;
        padding: 0 2vw;
    }
    .section {
        padding: 1.2rem 0;
    }
    .section-title {
        font-size: 1.2rem;
    }
    p, li {
        font-size: 1rem;
    }
}
