*{
    font-family: 'Roboto', sans-serif;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.breadcrumb {
    margin-bottom: 2rem;
}

.back-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.back-link:hover {
    color: #333;
}

.article-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: relative;
    border: 1px solid #000;
}

h1 {
    margin: 0 0 1rem 0;
    font-size: 2rem;
    color: #333;
}

.metadata {
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.metadata span {
    margin-right: 1rem;
}

.content {
    line-height: 1.6;
    color: #444;
    margin-bottom: 2rem;
}

.content figure {
    max-width: 100% !important;
}

.content img {
    max-height: 300px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.source-link {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.source-link a {
    color: #0066cc;
    text-decoration: none;
}

.source-link a:hover {
    text-decoration: underline;
}

#internal-link{
    background-color: yellow;
    padding: 6px;
    border-radius: 6px;
}

#jump-to-link{
    background-color: rgb(0, 0, 0);
    color: white;
    text-decoration: none;
    padding: 6px;
    border-radius: 6px;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .article-content {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
} 