#title-block-header {
    display: none;
  }

#events-container, #grid-lines {
    content-visibility: auto;
    contain-intrinsic-size: 100000px 500px; /* Approximate width/height to prevent scrollbar jumping */
}

/* Base Themes */
.font-fell { font-family: 'IM Fell English', serif; }
.font-lato { font-family: 'Lato', sans-serif; }

/* Custom Scrollbar hide */
.custom-scrollbar::-webkit-scrollbar {
    display: none;
}
.custom-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Parchment Texture Effect */
.parchment-texture {
    background-color: #fdfbf7;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23dcd6ce' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* Sidebar Row Styles */
.state-row {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(44, 24, 16, 0.1);
}

.state-row.active {
    background-color: #8b0000;
    color: #fdfbf7;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}

/* Timeline Horizontal Lines */
.timeline-row-line {
    border-bottom: 1px dashed rgba(44, 24, 16, 0.1);
    transition: all 0.3s ease;
}

.timeline-row-line.active {
    border-bottom: 1px solid #8b0000;
    box-shadow: 0 0 8px rgba(139, 0, 0, 0.4);
    background: rgba(139, 0, 0, 0.05);
}

/* Tooltips */
.tooltip-box {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
}

.marker-diamond:hover .tooltip-box {
    opacity: 1;
    visibility: visible;
}

/* Cinematic Blur */
.blur-mode {
    filter: blur(4px) sepia(50%);
    transition: filter 1s ease;
}

@media (max-width: 768px) {
    #card-image-container {
        display: none !important;
    }
}
