/* Basic reset */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #0089f0;
}

body {
    font-family: 'Poppins', sans-serif;
    padding: 20px;
    background-color: white;
    color: #0089f0;
    height:100%;
    
}

/*
iframe:has(> body.active){
    height: 50vh;
}*/

.publications-container {
    width:70%;
    margin: 0 auto;
}

.conf_comments p{
    color: black;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 30px;
}


.year-section {
    margin-bottom: 40px;
}

.year-section h2 {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.year-section hr {
    border: none;
    height: 2px;
    background-color: #333;
    margin-bottom: 15px;
}

.year-section ul {
    list-style-type: none;
}

.year-section ul li {
    margin-bottom: 10px;
    font-size: 1em;
    color: black;
}

.year-section ul li i{
    color: black;
}

.author_mani{
    font-weight: bold;
    color: black;
}


@media (max-width: 768px) {
    .publications-container {
        padding: 0 15px;
        width: 90%;
    }

    .year-section h2 {
        font-size: 1.0em;
    }

    .year-section ul li {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .publications-container {
        padding: 0 15px;
        width: 90%;
    }

    .year-section h2 {
        font-size: 1.0em;
    }

    .year-section ul li {
        font-size: 0.8em;
    }   
}