/* ============================================
   BotOfTheSpecter Roadmap - Custom Styles
   ============================================ */

/* Root Variables */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --success-color: #48c774;
    --warning-color: #ffdd57;
    --danger-color: #f14668;
    --info-color: #0096d6;
    --light-bg: #f5f5f5;
    --dark-text: #363636;
    --border-radius: 8px;
    --transition: all 0.3s ease-in-out;
}

/* ============================================
   Global Styles
   ============================================ */

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: #1a1a2e;
    color: #e0e0e0;
}

/* Flexbox layout for sticky footer */
html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

body > main {
    flex: 1;
}

/* ============================================
   Navigation Bar
   ============================================ */

.navbar.is-dark {
    background-color: #1a1a2e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar-item {
    transition: var(--transition);
}

.navbar-item:hover {
    background-color: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
}

.navbar-link:not(.is-arrowless)::after {
    border-color: var(--primary-color);
}

.navbar-dropdown {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--primary-color);
}

.navbar-item.has-dropdown:hover .navbar-link {
    color: var(--primary-color);
}

/* ============================================
   Buttons
   ============================================ */

.button {
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.button.is-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
}

.button.is-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.button.is-danger {
    background-color: var(--danger-color);
}

.button.is-danger:hover {
    background-color: #e91e63;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(241, 70, 104, 0.3);
}

.button.is-info {
    background-color: var(--info-color);
}

.button.is-info:hover {
    background-color: #0085c7;
    transform: translateY(-2px);
}

/* ============================================
   Cards & Boxes
   ============================================ */

.box {
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid #333;
    background-color: #242a40;
    color: #e0e0e0;
}

.box:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
    background-color: #2d3350;
}

.box h2,
.box h3,
.box h4,
.box h5 {
    color: #e0e0e0;
    margin-bottom: 0.75rem;
}

.box strong {
    color: var(--primary-color);
}

/* ============================================
   Tags & Badges
   ============================================ */

.tag {
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.tag.is-warning {
    background-color: #ffd166;
    color: #333;
}

.tag.is-success {
    background-color: var(--success-color);
    color: white;
}

.tag.is-danger {
    background-color: var(--danger-color);
    color: white;
}

.tag.is-info {
    background-color: var(--info-color);
    color: white;
}

.tag.is-light {
    background-color: #f5f5f5;
    color: #363636;
}

/* ============================================
    Titles & Headings
============================================ */

.title,
.subtitle {
    color: #e0e0e0;
}

.title {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.subtitle {
    font-weight: 400;
    color: #b0b0b0;
}

/* ============================================
    Notifications
============================================ */

.notification {
    border-radius: var(--border-radius);
    border-left: 4px solid;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: white;
}

.notification.is-danger {
    border-left-color: var(--danger-color);
    background-color: rgba(241, 70, 104, 0.08);
    color: white;
}

.notification.is-success {
    border-left-color: var(--success-color);
    background-color: rgba(72, 199, 116, 0.08);
    color: white;
}

.notification.is-info {
    border-left-color: var(--info-color);
    background-color: rgba(0, 150, 214, 0.08);
    color: white;
}

.notification.is-warning {
    border-left-color: #ffdd57;
    background-color: rgba(255, 221, 87, 0.08);
    color: white;
}

/* ============================================
    Footer
============================================ */

.footer {
    background-color: #1a1a2e;
    color: #b0b0b0;
    margin-top: auto;
    border-top: 1px solid #333;
}

.footer a {
    color: var(--primary-color);
    transition: var(--transition);
}

.footer a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer .content {
    line-height: 1.8;
}

/* ============================================
    Section Styles
============================================ */

.section {
    background-color: #1a1a2e;
    color: #e0e0e0;
}

.section.is-light {
    background-color: #242a40;
}

.section.is-alt {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.container {
    max-width: 1600px !important;
    width: 100% !important;
    padding: 0 1.5rem !important;
    margin: 0 auto !important;
}

/* ============================================
    Level Layouts
============================================ */

.level {
    background-color: transparent;
}

.level-item {
    align-items: center;
}

/* ============================================
   Form Styles
   ============================================ */

.input,
.textarea,
.select select {
    border-radius: var(--border-radius);
    border: 1px solid #444;
    transition: var(--transition);
    background-color: #1a1a2e;
    color: #e0e0e0;
}

.input:focus,
.textarea:focus,
.select select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
    background-color: #242a40;
}

.label {
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

/* Compact modal form styles */
#editItemModal .field {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

#editItemModal .control {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

#editItemModal .select {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

#editItemModal .label {
    margin-bottom: 0.15rem !important;
    margin-top: 0 !important;
}

#editItemModal input,
#editItemModal textarea,
#editItemModal select {
    line-height: 1.2 !important;
    margin: 0 !important;
}

#editItemModal .input {
    padding: 0.35rem !important;
    height: auto !important;
    font-size: 0.8rem !important;
}

#editItemModal .textarea {
    padding: 0.35rem !important;
    font-size: 0.8rem !important;
    line-height: 1.2 !important;
}

#editItemModal select {
    padding: 0.35rem !important;
    font-size: 0.8rem !important;
    height: auto !important;
}

#editItemModal .select::after {
    height: 12px !important;
}

#editItemModal .field-body {
    display: block !important;
}

#editItemModal form {
    margin: 0 !important;
}

#editItemModal {
    padding: 1rem !important;
}

#editItemModal .modal-card {
    margin: 0 !important;
    padding: 0 !important;
    max-height: 80vh !important;
}

#editItemModal .modal-card-body {
    padding: 0.5rem !important;
    margin: 0 !important;
}

#editItemModal .modal-card-head {
    padding: 0.5rem !important;
    margin: 0 !important;
}

#editItemModal .modal-card-foot {
    padding: 0.5rem !important;
    margin: 0 !important;
}

#editItemModal form > div {
    margin: 0 !important;
    padding: 0 !important;
}

#editItemModal [style*="display: grid"] {
    margin: 0 !important;
    padding: 0 !important;
}

#editItemModal [style*="display: flex"] {
    margin: 0 !important;
    padding: 0 !important;
}

/* ============================================
   Icons
   ============================================ */

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   Columns & Grid
   ============================================ */

.columns {
    margin-bottom: 2rem;
}

.column {
    padding: 1rem;
}

/* ============================================
   Timeline Styles
   ============================================ */

.timeline-container {
    padding: 2rem 0;
    position: relative;
}

.timeline-section {
    margin-bottom: 3rem;
}

.timeline-month-header {
    color: #667eea;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.timeline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.timeline-center-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #667eea, transparent);
    opacity: 0.3;
    top: 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
    width: 100%;
}

.timeline-item-left {
    flex-direction: row;
    justify-content: flex-end;
    padding-right: calc(50% + 12px);
    padding-left: 2rem;
}

.timeline-item-left .timeline-indicator {
    position: absolute;
    right: calc(50% - 8px);
    top: 1.5rem;
    transform: translateX(50%);
}

.timeline-item-right {
    flex-direction: row;
    justify-content: flex-start;
    padding-left: calc(50% + 12px);
    padding-right: 2rem;
}

.timeline-item-right .timeline-indicator {
    position: absolute;
    left: calc(50% - 8px);
    top: 1.5rem;
    transform: translateX(-50%);
}

.timeline-content {
    width: 100%;
}

.timeline-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-card:hover {
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
}

.timeline-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background-color: #667eea;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
    display: none;
}

.timeline-date {
    color: #888;
    font-size: 0.85rem;
}

.timeline-title {
    margin-bottom: 0.75rem;
    color: #fff;
}

.timeline-tags {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.timeline-event-box {
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    border-left: 3px solid;
}

.timeline-event-created {
    background: rgba(102, 126, 234, 0.2);
    border-left-color: #667eea;
}

.timeline-event-updated {
    background: rgba(255, 217, 61, 0.15);
    border-left-color: #FFD93D;
}

.timeline-event-text {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.timeline-event-meta {
    color: #999;
    font-size: 0.85rem;
}

.timeline-event-description {
    color: #888;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.timeline-event-updated-text {
    color: #FFD93D;
    font-size: 0.9rem;
}

.timeline-no-events {
    text-align: center;
    padding: 3rem;
}

.timeline-no-events-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.timeline-changelog-highlights {
    background: rgba(102, 126, 234, 0.08);
    border-radius: 6px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.timeline-changelog-section {
    margin-bottom: 0.75rem;
}

.timeline-changelog-section:last-child {
    margin-bottom: 0;
}

.timeline-changelog-section ul {
    list-style: none;
}

.timeline-changelog-section li {
    word-break: break-word;
}

/* ============================================
   Responsive Adjustments
   ============================================ */

@media screen and (max-width: 768px) {
    .navbar-menu {
        background-color: #1a1a2e;
    }

    .navbar-item {
        padding: 0.75rem 1rem;
    }

    .section {
        padding: 1.5rem 1rem;
    }

    .box {
        padding: 1.5rem;
    }

    .column {
        padding: 0.75rem;
    }

    .title {
        font-size: 1.75rem;
    }

    .subtitle {
        font-size: 1rem;
    }

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

    .timeline-item-left,
    .timeline-item-right {
        flex-direction: column;
        padding: 2rem 0 !important;
    }

    .timeline-item-left .timeline-indicator,
    .timeline-item-right .timeline-indicator {
        position: static;
        margin-bottom: 1rem;
    }

    .timeline-center-line {
        left: 0;
        width: 1px;
    }
}

@media screen and (max-width: 540px) {
    .section {
        padding: 1rem 0.5rem;
    }

    .box {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .button {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .title {
        font-size: 1.5rem;
    }
}

/* ============================================
   Utility Classes
   ============================================ */

.has-text-primary {
    color: var(--primary-color) !important;
}

.has-text-success {
    color: var(--success-color) !important;
}

.has-text-danger {
    color: var(--danger-color) !important;
}

.has-text-warning {
    color: #ffdd57 !important;
}

.has-background-primary-light {
    background-color: rgba(102, 126, 234, 0.15);
}

.has-background-success-light {
    background-color: rgba(72, 199, 116, 0.15);
}

.has-background-danger-light {
    background-color: rgba(241, 70, 104, 0.15);
}

.shadow-light {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.shadow-medium {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.shadow-heavy {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.rounded {
    border-radius: var(--border-radius);
}

.rounded-lg {
    border-radius: 12px;
}

.transition-all {
    transition: var(--transition);
}

.cursor-pointer {
    cursor: pointer;
}

/* ============================================
   Animation Effects
   ============================================ */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.animate-slide-in-up {
    animation: slideInUp 0.5s ease-in-out;
}

/* ============================================
   Login Page Styles
   ============================================ */

.login-page {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(10px);
}

/* ============================================
   Roadmap Styles
   ============================================ */

.roadmap-column {
    min-height: 600px;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    background-color: #242a40;
    border: 1px solid #333;
    border-radius: 8px;
}

/* Override box styles for roadmap columns */
.roadmap-column.box {
    padding: 1.5rem;
}

.roadmap-column.box h2,
.roadmap-column.box h3 {
    color: #e0e0e0;
}

.roadmap-column-content {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-right: 0.5rem;
}

/* Custom Scrollbar Styling */
.roadmap-column-content::-webkit-scrollbar {
    width: 8px;
}

.roadmap-column-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.roadmap-column-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.roadmap-column-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 0 8px rgba(102, 126, 234, 0.5);
}

.roadmap-card {
    padding: 1rem;
    background-color: #2d3350;
    border-radius: 8px;
    border-left: 4px solid;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.roadmap-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
    background-color: #323d52;
}

.roadmap-card.is-low {
    border-left-color: #48c774;
}

.roadmap-card.is-medium {
    border-left-color: #0096d6;
}

.roadmap-card.is-high {
    border-left-color: #ffdd57;
}

.roadmap-card.is-critical {
    border-left-color: #f14668;
}

.roadmap-card-title {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.roadmap-card-description {
    font-size: 0.8rem;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.roadmap-card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.roadmap-item-count {
    font-size: 0.875rem;
    color: #b0b0b0;
}

/* ============================================
   Modal Styles
   ============================================ */

.modal .modal-card {
    width: 90vw;
    max-width: 1200px;
}

.modal-card {
    background-color: #242a40;
    border-radius: 8px;
}

.modal-card-head {
    background-color: #1a1a2e;
    border-bottom: 1px solid #333;
    border-radius: 8px 8px 0 0;
    flex-wrap: wrap;
}

.modal-card-head .modal-card-title {
    color: #e0e0e0;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    flex: 1;
    min-width: 0;
}

.modal-card-head .delete {
    background-color: rgba(255, 255, 255, 0.1);
}

.modal-card-head .delete:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-card-foot {
    background-color: #1a1a2e;
    border-top: 1px solid #333;
    border-radius: 0 0 8px 8px;
}

/* ============================================
   Attachments Styles
   ============================================ */

.attachment-item {
    background-color: rgba(100, 126, 234, 0.1);
    border-left: 3px solid #667eea;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.attachment-item:hover {
    background-color: rgba(100, 126, 234, 0.15);
}

.attachment-item a {
    color: #667eea;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.attachment-item a:hover {
    color: #8b9ff0;
}

.attachment-item .file-icon {
    color: #667eea;
    margin-right: 0.5rem;
}

.attachment-item small {
    color: #888;
    display: block;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.delete-attachment-btn {
    flex-shrink: 0;
    background-color: rgba(241, 70, 104, 0.1);
    border: 1px solid rgba(241, 70, 104, 0.3);
    color: #f14668;
    transition: var(--transition);
}

.delete-attachment-btn:hover {
    background-color: rgba(241, 70, 104, 0.2);
    border-color: #f14668;
}

/* ============================================
   File Upload Styles
   ============================================ */

.file.is-boxed {
    background-color: #252540;
    border: 2px dashed rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition);
}

.file.is-boxed:hover {
    background-color: #2d2d48;
    border-color: rgba(102, 126, 234, 0.6);
}

.file.is-boxed .file-cta {
    background-color: transparent;
    border: none;
    color: #667eea;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
}

.file.is-boxed .file-icon {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.file.is-boxed .file-label {
    color: #e0e0e0;
    display: block;
}

.file.is-boxed .file-name {
    bottom: auto;
    left: auto;
    top: auto;
    right: auto;
    background-color: rgba(102, 126, 234, 0.1);
    color: #667eea;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    border-radius: 4px;
}

.file-input {
    display: none;
}

#uploadProgress {
    margin-top: 1rem;
}

#uploadProgress .progress {
    background-color: rgba(102, 126, 234, 0.2);
}

#uploadProgress .progress::-webkit-progress-bar {
    background-color: rgba(102, 126, 234, 0.2);
}

#uploadProgress .progress::-webkit-progress-value {
    background-color: #667eea;
}

#uploadStatusText {
    margin-top: 0.5rem;
    color: #667eea;
}

/* ============================================
   Markdown Styles
   ============================================ */

#detailsContent,
#detailsContent * {
    color: #e0e0e0;
    line-height: 1.6;
}

#detailsContent h1,
#detailsContent h2,
#detailsContent h3,
#detailsContent h4,
#detailsContent h5,
#detailsContent h6 {
    color: #667eea;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

#detailsContent h1 {
    font-size: 1.75rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.4);
}

#detailsContent h2 {
    font-size: 1.5rem;
}

#detailsContent h3 {
    font-size: 1.25rem;
}

#detailsContent h4 {
    font-size: 1.1rem;
}

#detailsContent p {
    margin-bottom: 1rem;
    text-align: justify;
}

#detailsContent a {
    color: #667eea;
    text-decoration: underline;
    transition: color 0.2s ease;
}

#detailsContent a:hover {
    color: #8b9ff0;
}

#detailsContent strong,
#detailsContent b {
    color: #8b9ff0;
    font-weight: 700;
}

#detailsContent em,
#detailsContent i {
    color: #b0b0b0;
    font-style: italic;
}

#detailsContent code {
    background-color: rgba(0, 0, 0, 0.3);
    color: #66d9ef;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

#detailsContent pre {
    background-color: #0a0a0a;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 1rem;
    overflow-x: auto;
    margin: 1rem 0;
    line-height: 1.4;
}

#detailsContent pre code {
    background-color: transparent;
    color: #e0e0e0;
    padding: 0;
    font-size: 0.85em;
}

#detailsContent blockquote {
    border-left: 4px solid #667eea;
    padding-left: 1rem;
    margin-left: 0;
    margin-bottom: 1rem;
    color: #b0b0b0;
    font-style: italic;
}

#detailsContent ul,
#detailsContent ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

#detailsContent li {
    margin-bottom: 0.5rem;
}

#detailsContent li > p {
    margin-bottom: 0.25rem;
}

#detailsContent ul li::marker {
    color: #667eea;
}

#detailsContent ol li::marker {
    color: #667eea;
    font-weight: 700;
}

#detailsContent hr {
    border: none;
    border-top: 2px solid rgba(102, 126, 234, 0.2);
    margin: 1.5rem 0;
}

#detailsContent table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    border: 1px solid #333;
}

#detailsContent th,
#detailsContent td {
    border: 1px solid #333;
    padding: 0.75rem;
    text-align: left;
}

#detailsContent th {
    background-color: rgba(102, 126, 234, 0.1);
    color: #667eea;
    font-weight: 700;
}

#detailsContent tr:nth-child(even) {
    background-color: rgba(102, 126, 234, 0.05);
}

#detailsContent img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1rem 0;
    display: block;
}
