/* Sidebar Component Styles - Grid Third Column */

/* Sidebar column handled by grid layout in _grid.css */

/* Sticky sidebar wrapper - now properly sticky */
.sidebar-sticky {
    position: sticky;
    top: 2rem;
}

/* Debug box styling */
.debug-box {
    background-color: #f8f9fa;
    border: 2px solid #007cba;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.85rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    min-height: 200px;
    width: 100%;
}

.debug-box h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #007cba;
    border-bottom: 2px solid #007cba;
    padding-bottom: 0.5rem;
}

.debug-content p {
    margin: 0.5rem 0 !important;
    line-height: 1.4 !important;
    color: #333 !important;
    font-size: 14px !important;
    display: block !important;
    visibility: visible !important;
}

.debug-content strong {
    color: #007cba;
    font-weight: 600;
}

/* Dark mode adjustments */
.dark-mode .debug-box {
    background-color: var(--background-light);
    border-color: var(--border-dark);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}