/*
 * Base/Fallback Styles Centralized from HTML <style> blocks
 * Only universal, non-slide-specific styles should be here.
 * Last updated: 2025-04-14
 */

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
}

.reveal h1, .reveal h2, .reveal h3 {
    color: #2c3e50;
}

.title-slide h1 {
    margin-bottom: 0.2em;
}

.title-slide h3 {
    color: #3498db;
    margin-bottom: 1.5em;
}

.fragment-list .fragment {
    opacity: 0;
}

.fragment-list .fragment.visible {
    opacity: 1;
}

.key-term {
    color: #3498db;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px dashed #3498db;
}

.definition-panel {
    background-color: rgba(236, 240, 241, 0.8);
    border-left: 4px solid #3498db;
    padding: 0.8em;
    margin: 1em 0;
    border-radius: 0 4px 4px 0;
    display: none;
}

/* Styles for Breaches Visualization (from breaches.html) */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.dashboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.chart-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.chart-title {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.chart {
    width: 100%;
    height: 300px;
}

.tooltip {
    position: absolute;
    padding: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 4px;
    font-size: 12px;
    pointer-events: none;
    z-index: 10;
}

/* Add more universal/fallback styles here as needed */
