* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    background-color: #0a0a0a;
    color: #d4d4d4;
    line-height: 1.6;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(139, 0, 0, 0.03) 2px,
            rgba(139, 0, 0, 0.03) 4px
        );
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-bottom: 3px solid #8B0000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 28px;
    font-weight: bold;
    color: #D4AF37;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #d4d4d4;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: #C41E3A;
    text-shadow: 0 0 10px rgba(196, 30, 58, 0.5);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a0000 0%, #2a1a1a 50%, #1a0000 100%);
    border: 2px solid #8B0000;
    border-radius: 2px;
    margin: 40px 0;
    color: #e8e8e8;
    box-shadow: 0 8px 32px rgba(139, 0, 0, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero::before {
    content: '✦';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #D4AF37;
    font-size: 24px;
}

.hero::after {
    content: '✦';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #D4AF37;
    font-size: 24px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #D4AF37;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: normal;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #c0c0c0;
    font-style: italic;
}

.hero-search {
    max-width: 500px;
    margin: 0 auto;
}

.hero-search form {
    display: flex;
    gap: 10px;
}

.hero-search input {
    flex: 1;
    padding: 12px;
    border: 2px solid #8B0000;
    border-radius: 0;
    background-color: #1a1a1a;
    font-size: 16px;
    color: #d4d4d4;
    transition: border-color 0.3s;
}

.hero-search input:focus {
    outline: none;
    border-color: #C41E3A;
    box-shadow: inset 0 0 8px rgba(196, 30, 58, 0.2);
}

.hero-search button {
    padding: 12px 30px;
    background: linear-gradient(135deg, #8B0000, #A32020);
    color: #D4AF37;
    border: 2px solid #D4AF37;
    border-radius: 0;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-search button:hover {
    background: linear-gradient(135deg, #A32020, #C41E3A);
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.6);
    transform: translateY(-2px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2a2a2a;
    color: #d4d4d4;
    text-decoration: none;
    border: 2px solid #8B0000;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #1a0000;
    border-color: #C41E3A;
    color: #D4AF37;
    box-shadow: 0 0 12px rgba(196, 30, 58, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, #8B0000, #A32020);
    border-color: #D4AF37;
    color: #D4AF37;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #A32020, #C41E3A);
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.6);
}

.btn-danger {
    background-color: #8B0000;
    border-color: #C41E3A;
    color: #e8e8e8;
}

.btn-danger:hover {
    background-color: #C41E3A;
    color: #D4AF37;
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.5);
}

/* Sections */
.section {
    margin: 60px 0;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #D4AF37;
    border-bottom: 3px solid #8B0000;
    padding-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: normal;
}

/* Cards */
.entries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.entry-card {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border: 2px solid #3a3a3a;
    border-left: 4px solid #8B0000;
    border-radius: 0;
    padding: 20px;
    transition: all 0.3s;
    position: relative;
}

.entry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8B0000, transparent);
}

.entry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.4), inset 0 0 15px rgba(139, 0, 0, 0.05);
    border-color: #C41E3A;
}

.entry-card h3 {
    margin-bottom: 10px;
}

.entry-card h3 a {
    color: #D4AF37;
    text-decoration: none;
    letter-spacing: 1px;
}

.entry-card h3 a:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.entry-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    font-style: italic;
}

.entry-preview {
    font-size: 14px;
    color: #b8b8b8;
    margin-bottom: 10px;
}

.entry-type {
    margin-bottom: 10px;
}

.type-badge {
    display: inline-block;
    padding: 3px 8px;
    background-color: #1a1a1a;
    border: 1px solid #8B0000;
    border-radius: 0;
    font-size: 12px;
    text-transform: uppercase;
    color: #D4AF37;
    letter-spacing: 1px;
}

.type-badge.user {
    border-color: #8B0000;
}

.type-badge.group {
    border-color: #8B0000;
    color: #d4d4d4;
}

.type-badge.general {
    border-color: #8B0000;
    color: #d4d4d4;
}

/* Tags */
.entry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.tag {
    display: inline-block;
    background-color: #1a0000;
    color: #D4AF37;
    padding: 4px 10px;
    border-radius: 0;
    border: 1px solid #8B0000;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.tag:hover {
    background-color: #8B0000;
    color: #D4AF37;
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}

.entry-views {
    font-size: 12px;
    color: #666;
}

/* Groups List */
.groups-list {
    display: grid;
    gap: 15px;
}

.group-item {
    background: linear-gradient(90deg, #1a1a1a, #0f0f0f);
    border-left: 5px solid #8B0000;
    padding: 20px;
    border-radius: 0;
    border-top: 1px solid #3a3a3a;
    border-right: 1px solid #3a3a3a;
    border-bottom: 1px solid #3a3a3a;
    transition: all 0.3s;
}

.group-item:hover {
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
    border-left-color: #C41E3A;
}

.group-item h4 a {
    color: #D4AF37;
    text-decoration: none;
    letter-spacing: 1px;
}

.group-item h4 a:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.group-meta {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
    font-style: italic;
}

/* Forms */
.form-group {
    max-width: 600px;
    margin: 40px auto;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    padding: 30px;
    border: 2px solid #8B0000;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #D4AF37;
    letter-spacing: 1px;
    font-size: 13px;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px;
    background-color: #0f0f0f;
    border: 2px solid #3a3a3a;
    border-radius: 0;
    color: #d4d4d4;
    font-family: 'Georgia', serif;
    font-size: 14px;
    transition: all 0.3s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #8B0000;
    background-color: #1a1a1a;
    box-shadow: inset 0 0 8px rgba(139, 0, 0, 0.2);
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.form-actions button,
.form-actions a {
    flex: 1;
}

.entry-editor-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px auto;
    align-items: start;
}

.entry-editor-panel {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    padding: 30px;
    border: 2px solid #8B0000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.entry-editor-panel h2 {
    color: #D4AF37;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 20px;
    border-bottom: 2px solid #8B0000;
    padding-bottom: 10px;
}

.markdown-preview {
    min-height: 520px;
    max-height: 75vh;
    overflow: auto;
}

.markdown-preview .preview-empty {
    color: #999;
    font-style: italic;
}

.markdown-preview .preview-hint {
    color: #999;
    font-size: 13px;
    margin-top: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.stat-card {
    background: #0f0f0f;
    border: 1px solid #3a3a3a;
    padding: 18px;
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: 32px;
    color: #D4AF37;
    margin-bottom: 8px;
}

.stat-card span {
    color: #d4d4d4;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table-wrap .access-table {
    min-width: 900px;
}

@media (max-width: 900px) {
    .entry-editor-layout {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Entry View */
.entry-view {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border: 2px solid #8B0000;
    border-radius: 0;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 8px 32px rgba(139, 0, 0, 0.3);
}

.entry-header {
    margin-bottom: 30px;
    border-bottom: 2px solid #8B0000;
    padding-bottom: 20px;
}

.entry-header h1 {
    color: #D4AF37;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.entry-meta {
    display: flex;
    gap: 30px;
    font-size: 14px;
    color: #999;
    flex-wrap: wrap;
}

.entry-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.entry-content {
    font-size: 16px;
    line-height: 1.8;
    margin: 30px 0;
    color: #d4d4d4;
}

.entry-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #8B0000;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border-top: 3px solid #8B0000;
    text-align: center;
    padding: 30px;
    margin-top: 60px;
    color: #999;
}

/* Search Results */
.search-header {
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(90deg, #1a0000, #0f0f0f);
    border-left: 5px solid #8B0000;
    border-radius: 0;
}

.search-header p {
    font-size: 18px;
    color: #d4d4d4;
}

.search-header strong {
    color: #D4AF37;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border-radius: 0;
    border: 2px dashed #8B0000;
}

.no-results p {
    margin-bottom: 20px;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .entries-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 32px;
    }

    .entry-meta {
        flex-direction: column;
        gap: 5px;
    }

    .entry-view {
        padding: 20px;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }
}

/* Documents */
.documents-container {
    margin: 40px 0;
}

.documents-section {
    margin-bottom: 50px;
}

.documents-section h2 {
    font-size: 24px;
    color: #D4AF37;
    margin-bottom: 20px;
    border-bottom: 2px solid #8B0000;
    padding-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.document-card {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border: 2px solid #3a3a3a;
    border-left: 4px solid #8B0000;
    border-radius: 0;
    padding: 20px;
    transition: all 0.3s;
    position: relative;
}

.document-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8B0000, transparent);
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.4);
    border-color: #C41E3A;
}

.doc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.doc-header h3 {
    flex: 1;
}

.doc-header h3 a {
    color: #D4AF37;
    text-decoration: none;
    letter-spacing: 1px;
}

.doc-header h3 a:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 0;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    border: 1px solid #8B0000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-private {
    background-color: #8B0000;
    color: #D4AF37;
}

.badge-public {
    background-color: #1a0000;
    color: #D4AF37;
    border-color: #D4AF37;
}

.badge-shared {
    background-color: #1a1a1a;
    color: #d4d4d4;
}

.doc-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    font-style: italic;
}

.doc-preview {
    font-size: 13px;
    color: #b8b8b8;
    margin-bottom: 15px;
    line-height: 1.5;
}

.doc-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.empty-state {
    text-align: center;
    padding: 40px;
    color: #999;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border: 2px dashed #8B0000;
    border-radius: 0;
}

.empty-state a {
    color: #D4AF37;
    text-decoration: none;
}

.empty-state a:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* Document View */
.document-view {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border: 2px solid #8B0000;
    border-radius: 0;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 8px 32px rgba(139, 0, 0, 0.3);
}

.document-header {
    margin-bottom: 30px;
    border-bottom: 2px solid #8B0000;
    padding-bottom: 20px;
}

.document-header h1 {
    color: #D4AF37;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.document-meta {
    display: flex;
    gap: 30px;
    font-size: 14px;
    color: #999;
    flex-wrap: wrap;
}

.document-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.document-content {
    font-size: 16px;
    line-height: 1.8;
    margin: 30px 0;
    color: #d4d4d4;
}

.document-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #8B0000;
}

.document-footer h3 {
    color: #D4AF37;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.access-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.access-list li {
    background-color: #0f0f0f;
    padding: 12px;
    border-left: 3px solid #8B0000;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.role-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 0;
    font-size: 11px;
    font-weight: bold;
    border: 1px solid #8B0000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.role-badge.viewer {
    background-color: #1a1a1a;
    color: #d4d4d4;
}

.role-badge.editor {
    background-color: #8B0000;
    color: #D4AF37;
}

.role-badge.admin {
    background-color: #C41E3A;
    color: #D4AF37;
}

/* Share Container */
.share-container {
    max-width: 800px;
    margin: 40px auto;
}

.public-toggle {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border: 2px solid #8B0000;
    padding: 20px;
    border-radius: 0;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.public-toggle h3 {
    color: #D4AF37;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.public-toggle label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #d4d4d4;
}

.public-toggle input[type="checkbox"] {
    cursor: pointer;
    accent-color: #8B0000;
}

.access-management {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border: 2px solid #8B0000;
    padding: 20px;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.access-management h3 {
    color: #D4AF37;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.access-management h4 {
    color: #b8b8b8;
    margin-bottom: 15px;
    margin-top: 20px;
    letter-spacing: 0.5px;
}

.add-access {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #3a3a3a;
}

.access-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #3a3a3a;
}

.access-table thead {
    background-color: #0f0f0f;
}

.access-table th,
.access-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #3a3a3a;
}

.access-table th {
    color: #D4AF37;
    font-weight: bold;
    border-bottom: 2px solid #8B0000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.access-table td {
    color: #d4d4d4;
}

.access-table td select {
    background-color: #0f0f0f;
    border: 1px solid #3a3a3a;
    color: #d4d4d4;
    padding: 6px;
    border-radius: 0;
    cursor: pointer;
}

.access-table td select:focus {
    outline: none;
    border-color: #8B0000;
    box-shadow: inset 0 0 6px rgba(139, 0, 0, 0.2);
}

/* Markdown Styling */
.markdown-body {
    font-family: 'Georgia', 'Garamond', serif;
    color: #d4d4d4;
    line-height: 1.8;
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
    color: #D4AF37;
    margin: 24px 0 16px 0;
    border-bottom: 2px solid #8B0000;
    padding-bottom: 8px;
    letter-spacing: 1px;
    font-weight: bold;
}

.markdown-body h1 {
    font-size: 32px;
    text-transform: uppercase;
}

.markdown-body h2 {
    font-size: 28px;
    text-transform: uppercase;
}

.markdown-body h3 {
    font-size: 24px;
}

.markdown-body h4 {
    font-size: 20px;
}

.markdown-body h5 {
    font-size: 18px;
}

.markdown-body h6 {
    font-size: 16px;
}

.markdown-body p {
    margin: 16px 0;
    color: #d4d4d4;
}

.markdown-body a {
    color: #C41E3A;
    text-decoration: none;
    border-bottom: 1px solid #C41E3A;
    transition: all 0.3s ease;
}

.markdown-body a:hover {
    color: #D4AF37;
    border-bottom-color: #D4AF37;
    text-shadow: 0 0 8px rgba(196, 30, 58, 0.4);
}

.markdown-body code {
    background-color: #1a1a1a;
    border: 1px solid #3a3a3a;
    color: #90EE90;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.markdown-body pre {
    background-color: #0f0f0f;
    border: 2px solid #3a3a3a;
    border-left: 4px solid #8B0000;
    padding: 16px;
    border-radius: 4px;
    overflow-x: auto;
    margin: 16px 0;
}

.markdown-body pre code {
    background-color: transparent;
    border: none;
    color: #90EE90;
    padding: 0;
}

.markdown-body blockquote {
    border-left: 4px solid #8B0000;
    padding-left: 16px;
    margin: 16px 0;
    color: #b0b0b0;
    font-style: italic;
}

.markdown-body ul,
.markdown-body ol {
    margin: 16px 0 16px 32px;
}

.markdown-body li {
    margin: 8px 0;
}

.markdown-body ul li:before {
    color: #C41E3A;
}

.markdown-body ol li {
    color: #d4d4d4;
}

.markdown-body strong {
    color: #D4AF37;
    font-weight: bold;
}

.markdown-body em {
    color: #C41E3A;
    font-style: italic;
}

.markdown-body hr {
    border: none;
    border-top: 2px solid #8B0000;
    margin: 24px 0;
}

.markdown-body table {
    border-collapse: collapse;
    width: 100%;
    margin: 16px 0;
}

.markdown-body table th,
.markdown-body table td {
    border: 1px solid #3a3a3a;
    padding: 12px;
    text-align: left;
}

.markdown-body table th {
    background-color: #1a1a1a;
    color: #D4AF37;
    font-weight: bold;
}

.markdown-body table tr:nth-child(even) {
    background-color: rgba(139, 0, 0, 0.05);
}

/* Highlight.js Syntax Highlighting */
.hljs {
    background: #0f0f0f;
    color: #d4d4d4;
}

.hljs-string,
.hljs-title {
    color: #90EE90;
}

.hljs-number,
.hljs-literal {
    color: #FFB6C1;
}

.hljs-attr {
    color: #D4AF37;
}

.hljs-keyword {
    color: #C41E3A;
}

.hljs-variable {
    color: #87CEEB;
}
