/* Metadata Page Styling */

/* Site container for proper footer positioning */
.site-container {
    min-height: calc(100vh - 80px); /* Adjust 80px to match your header height */
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
}

/* Ensure content takes up available space */
.site-container .container {
    flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .site-container {
        min-height: calc(100vh - 60px); /* Smaller header on mobile */
    }
}

/* Additional styling for metadata content */
.metadata-content {
    padding: 20px 0;
}

.metadata-content h1 {
    margin-bottom: 20px;
    color: #333;
}

.metadata-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #444;
}

.metadata-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.metadata-content pre {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
    overflow-x: auto;
}

.metadata-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.metadata-content table th,
.metadata-content table td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.metadata-content table th {
    background-color: #f8f9fa;
    font-weight: bold;
}
