
/* styles.css */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f4f4f4;
}

h1 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

h2 {
    color: #34495e;
    margin-top: 30px;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Index page specific styles */
.prefix-section {
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.prefix-section h2 {
    margin-top: 0;
    color: #2980b9;
}

.document-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.document-links a {
    background-color: #ecf0f1;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.9em;
}

/* Document page specific styles */
.canonical-uri {
    background-color: #e8f6fe;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.translation {
    background-color: #fff;
    border-left: 4px solid #3498db;
    padding: 15px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.similar-documents {
    background-color: #f0f8ff;
    border: 1px solid #b0d4ff;
    border-radius: 5px;
    padding: 15px;
    margin-top: 30px;
}

.similar-documents h3 {
    color: #2980b9;
    margin-top: 0;
    font-size: 1.1em;
}

.similar-documents ul {
    list-style-type: none;
    padding: 0;
}

.similar-documents li {
    margin-bottom: 10px;
}

.similar-documents a {
    display: inline-block;
    background-color: #e8f4ff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.similar-documents a:hover {
    background-color: #d0e6ff;
}

.translation h2 {
    color: #2980b9;
    margin-top: 0;
    font-size: 1.2em;
}

/* Responsive design */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    
    .document-links {
        flex-direction: column;
    }
}
