.code,
code {
    border-radius: 3px;
    padding: 0 5vw;
    font-size: 85%;
    tab-size: 2;
    color: #6b6b6b;
}

pre {
    white-space: pre-wrap;
    background-color: #f4f4f4;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
    margin: 10px 5px !important;
    padding: 10px;
}

.navbar {
    background-color: transparent;
}

.navbar-item img {
    max-height: 2rem;
}

.reference {
    padding-left: 5vw;
    padding-right: 5vw;
    text-align: center;
    line-height: 0.98;
}

.authors {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 0.9rem;
}

.affiliations {
    margin-bottom: 20px;
    font-size: 0.8rem;
}

.container {
    max-width: 900px;
    margin: 1vw auto;
    padding: 20px 10vw;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 1em;
}

.container h1 {
    text-align: center;
    font-size: 24px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

blockquote {
    font-size: 1.05rem;
    margin: 2em 6vw;
    background-color: #f1f3f4;
    border-radius: 1em;
    padding: 1em;
}

.project-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-around;
}

.project-item {
    background-color: #f1f3f4;
    padding: 1rem;
    border-radius: 8px;
    width: calc(33% - 1rem);
    min-width: 250px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .project-item {
        width: 100%;
    }

    .reference {
        padding-left: 3vw;
        padding-right: 3vw;
    }

    blockquote {
        margin-left: 1vw;
        margin-right: 1vw;
    }

    .container {
        padding: 20px 2vw;
    }
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.feature-list li::before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free', serif;
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--bulma-success);
}

.content ul {
    list-style: none !important;
}

strong {
    color: var(--bulma-link);
}

/* Documentation specific styles */
.doc-container {
    max-width: 1000px;
    margin: 1vw auto;
    padding: 20px 5vw;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 1em;
}

.doc-container h1 {
    text-align: left;
    border-bottom: 2px solid #f1f3f4;
    padding-bottom: 0.5rem;
}

.doc-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.doc-nav-item {
    flex: 1;
    min-width: 200px;
    background-color: #f1f3f4;
    padding: 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.doc-nav-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #333;
}

.doc-nav-item h3 {
    margin-bottom: 0.5rem;
    color: var(--bulma-link);
}

.doc-nav-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.doc-nav-item .icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--bulma-link);
}

.doc-section {
    margin-bottom: 2rem;
}

.doc-section img {
    width: 90%;
    display: block;
    margin: 1rem auto;
}

.doc-section img.small {
    width: 60%;
}


.breadcrumb-container {
    margin-bottom: 1.5rem;
}

.info-box {
    background-color: #e8f4fd;
    border-left: 4px solid var(--bulma-link);
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1rem 0;
}

.info-box.warning {
    background-color: #fff8e6;
    border-left-color: #ffcc00;
}

.step-list {
    counter-reset: step-counter;
}

.step-list li {
    counter-increment: step-counter;
    padding-left: 3rem;
    position: relative;
    margin-bottom: 1.5rem;
}

.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: var(--bulma-link);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.field-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.field-table th,
.field-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.field-table th {
    background-color: #f9f9f9;
    font-weight: 600;
}

.field-table tr:hover {
    background-color: #f5f5f5;
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.nav-buttons a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
