/* Resetting common HTML elements */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove extra spacing around body */
body {
    line-height: 1.5;
    font-family: Arial, sans-serif;
}

/* Remove list styling */
/* ul {
    list-style: none;
}*/
ol{list-style:decimal;}

/* Remove link styling */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove table border spacing */
table {
    border-collapse: collapse;
    width: 100%;
}

/* Remove form input styling */
input, textarea, button {
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

/* Reset images and media elements */
img, picture, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Reset button styles */
button {
    cursor: pointer;
}

/* Reset forms' default margin and padding */
fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

legend {
    padding: 0;
}
:root{
 --title-bg : #2a2a86;
 --title-color : #ffffff;
 --title-color-2:#2a2a86;
 --header-bg : #FCB039;
 --header-color : #FFFFFF;
}
body{
    max-width: 75rem;
    margin: 0 auto;
    display: block;
}
.cover-img-block{
    text-align: center;
}
.cover-img-block img{
    margin: auto;
    max-height: 100vh;
    max-width: auto;
}
header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
    background-color:var(--header-bg)
}
main{
    padding-bottom:5rem;
}
header:not(:has(:nth-child(2))){
    justify-content: center;  
}
header a{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    color:var(--header-color);
}
header svg{
    max-width: 1.25rem;
    height: auto;
}
header svg path{
    fill: var(--header-color);
}
h1{
    text-align: center;
    background-color: var(--title-bg);
    color: var(--title-color);
    padding: 2rem;
    font-size: 2rem ;
    font-weight: 900;
}
h2::before{
    content: '';
    height: .5rem;
    width: 5rem;
    background-color: var(--title-color-2);
    position: absolute;
    top:0;
    left:0;
}
h2{
    color: var(--title-color-2) !important;
    border-top: 1px solid var(--title-color-2);
    margin-bottom: 1rem;
    padding: 1rem 0;
    position: relative;
}
h3{ color: var(--title-color-2) !important;}

/*table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}
th {
    background-color:var(--title-bg);
    color: var(--title-color)
}*/
h2 {
    margin-top: 30px;
    color: #2a2a86;
}
p{
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
table {
            width: 100%;
            border-collapse: collapse;
        }
        td {
            padding: 5px;
            vertical-align: top;
        }
        .section {
            text-align: center;
            color: red;
            font-weight: bold;
            margin-top: 20px;
            text-transform: uppercase;
            font-size: 14px;
        }
        .project-title {
            text-align: center;
            color: darkblue;
            font-weight: bold;
            font-size: 16px;
        }
        .number {
            font-weight: bold;
            white-space: nowrap;
            vertical-align: top;
        }
        
        .authors {
            font-style: italic;
            font-size: 90%;
            display: block;
            margin-top: 3px;
        }
        .page {
            white-space: nowrap;
            text-align: right;
        }


        .figure-title {
           
            color: #2a2a86;;
    
            margin-bottom: 10px;
        }
        

        .image-container {
            text-align: center;
            margin-bottom: 10px;
        }
        .image-container img {
            width: 300px;
            border-radius: 10px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
        }

        hr{width: 26%;

    text-decoration: overline;
    border: 1px solid #000;}
    .sub-title{color:#3396ca;}
    .sub-title1{
                color: #000;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
            }

    .title-block{
        background-color: var(--title-bg);
        color: var(--title-color);
        padding: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    .title-block .author{
        position: relative;
    }
    .title-block p{
        margin:0  !important;
        display:inline-block;
    }
    .title-block p:not(:last-child)::after{
        content: "";
        height: 100%;
        width:1px;
        background-color: #FFFFFF;
        display: inline-block;
        position: absolute;
    }
    .title-block p em{
        margin-bottom: 0;
        padding: .5rem 2rem !important;
        
        display: inline-block;
    }
    .title-block p:last-child em{
       
    }