/* Citation Container Styling */

/* Dark mode (default) */
.citation-container {
    background-color: #27293d;
    border: 1px solid #2b3553;
    border-radius: 0.25rem;
    padding: 15px;
    margin-bottom: 20px;
}
.citation-title h4 {
    color: #1f8ef1;
    margin-bottom: 8px;
}
.citation-description {
    color: #aaa;
    line-height: 1.5;
}

/* Light mode */
.white-content .citation-container {
    background-color: #ffffff;
    border: 1px solid #e3e3e3;
}
.white-content .citation-title h4 {
    color: #007bff;
}
.white-content .citation-description {
    color: #666;
}