body {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    margin-top: 5%;
    margin-bottom: 5%;
    font-family: 'Roboto', 'Noto', sans-serif;
}

.blog-section {
    margin-top: 2rem;
}

.section-title {
    margin-top: 5%;
    margin-bottom: 3%;
    width: 100%;
    box-sizing: border-box;
    background: #000000;
    padding: 0.8rem;
    border-radius: 1rem;
    color: #e6eef6;
}

.section-title>p {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
}

@media (min-width: 768px) { 
    .section-presentation {
        display: block;
        margin: auto;
        width: 90%;
    }
}

a {
    font-weight: bold;
    color: rgb(99, 167, 235);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

li {
    padding-bottom: 1rem;
}

ul>li:last-child {
    padding-bottom: 0;
}

.paper-info {
    text-align: center;
}

.paper-title {
    font-size: 2rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
    margin-bottom: 0rem;
}

.paper-authors {
    font-size: 1rem;
    font-style: italic;
    font-family: Arial, sans-serif;
    margin-bottom: 1rem;
}

.paper-status {
    font-style: italic;
    margin-bottom: 3rem;
}

.paper-status-chip {
    font-style: italic;
    font-weight: bold;
    color: rgb(255, 196, 0);
    background-color: black;
    border-radius: 1rem;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    margin-right: 0.5rem;
}

.paper-data-item {
    display: inline-block;
    margin-right: 0.3rem;
    margin-bottom: 0.5rem;
    padding: 0.3rem;
    color: rgb(34, 134, 234);
    background-color: rgba(99, 167, 235, 0.294);
    border: 2px solid rgb(99, 167, 235);
    border-radius: 0.5rem;
}

.paper-data-item:hover {
    background-color: rgba(55, 147, 238, 0.506);
    border: 2px solid rgb(99, 167, 235);
}

.paper-data-item-disabled {
    display: inline-block;
    margin-right: 0.3rem;
    margin-bottom: 0.5rem;
    padding: 0.3rem;
    color: white;
    background-color: rgb(161, 161, 161);
    border: 2px solid rgb(161, 161, 161);
    border-radius: 0.5rem;
}

img {
    width: 100%;
    display: block; /* needed to use margin:auto */
    margin: auto;
}

.bib-box {
    border-radius: 1rem;
    background: #d4d4d4;
    padding: 0.5rem;
    font-family: ui-monospace, SFMono-Regular, "Roboto Mono", Menlo, Monaco, "Courier New", monospace;
    font-size: 0.8rem;
    line-height: 1.5;
}
.bib-box > p {
    color: #404040;
    white-space: pre;
    margin: 0;
}

.nav-button {
    color: black;
    background-color: rgb(250, 196, 103, 0.294);
    border: 3px solid rgb(250, 196, 103);
    box-shadow: 2px 2px 3px #999;
    border-radius: 2rem;
    text-align: center;
    padding: 0.5rem;
    cursor: pointer;
}

.nav-button:hover {
    background-color: rgb(252, 174, 39, 0.506);
    border: 3px solid rgb(252, 174, 39);
}

#home-button {
    position: fixed;
    top: 2rem;
    left: 2rem;
}

#bottom-buttons {
    margin: auto;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.todo {
    color:red;
}

/* The snackbar */

#snackbar {
    visibility: hidden;
    /* Hidden by default. Visible on click */
    min-width: 250px;
    /* Set a default minimum width */
    margin-left: -125px;
    /* Divide value of min-width by 2 */
    background-color: #333;
    /* Black background color */
    color: #fff;
    /* White text color */
    text-align: center;
    /* Centered text */
    border-radius: 5px;
    /* Rounded borders */
    padding: 16px;
    /* Padding */
    position: fixed;
    /* Sit on top of the screen */
    z-index: 1;
    /* Add a z-index if needed */
    left: 50%;
    /* Center the snackbar */
    bottom: 30px;
    /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    visibility: visible;
    /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
        However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

