html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    width: 100%;
    padding: 20px 15px;
    box-sizing: border-box;
}

.container {
    width: 100%;
    padding: 20px 15px;
    box-sizing: border-box;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 15px;
}

header h1 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
}

nav {
    display: flex;
    flex-wrap: wrap;
}

nav a {
    color: #333;
    text-decoration: none;
    padding: 0 12px;
}

nav a:hover {
    text-decoration: underline;
}

.main-image {
    width: 100%;
    height: auto;
    max-height: 40vh;
    object-fit: cover;
}

.intro-section,
.overview-section,
.contact-details {
    padding: 20px 0;
}

/* Homepage */

.intro-section .container,
.contact-details .container {
    text-align: center;
}

.overview-section .container {
    width: 100%;
    padding: 20px 15px;
    box-sizing: border-box;
    text-align: left;
}

.overview-section h2 {
    text-align: center;
    margin-bottom: 25px;
}

.overview-section h3 {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
}

.overview-section p {
    margin: 0 0 20px;
}

.intro-text {
    width: 100%;
    margin: 0 0 35px 0;
    text-align: left;
}

/* Publications */

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

.publication time {
    display: block;
    color: #666;
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.publication a {
    display: inline-block;
    color: #1a0dab;
    text-decoration: none;
}

.publication a:hover {
    text-decoration: underline;
}

.publication-note {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
    font-size: 0.9rem;
    color: #666;
    text-align: left;
}

.contact-details p {
    margin-top: 10px;
}

/* Mobile */

@media (max-width: 768px) {

    header .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 12px 15px;
    }

    header h1 {
        margin: 0 0 12px;
        font-size: 2rem;
        line-height: 1.15;
        text-align: center;
    }

    nav {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    nav a {
        padding: 0;
        white-space: nowrap;
        font-size: 0.9rem;
        flex: 0 0 auto;
    }

    .intro-section .container,
    .overview-section .container,
    .contact-details .container {
        padding: 10px 15px;
    }
}

/* Disclosure */

.disclosure-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.disclosure-content {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.disclosure-content p {
    margin: 0 0 20px;
    font-size: 16px;
    color: #333;
}

.disclosure-button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.disclosure-button:hover {
    background-color: #555;
}

.blurred {
    filter: blur(8px);
    pointer-events: none;
}
/* Publications Table */

.publication-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

.publication-table th {
    text-align: left;
    border-bottom: 2px solid #ccc;
    padding: 12px 8px;
    font-weight: 700;
}

.publication-table td {
    padding: 14px 8px;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: top;
}

.publication-table td:last-child,
.publication-table th:last-child {
    text-align: center;
}

.publication-table a {
    color: #1a0dab;
    text-decoration: none;
}

.publication-table a:hover {
    text-decoration: underline;
}

.publication-note {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
    font-size: 0.9rem;
    color: #666;
    text-align: left;
}