/* Base Styles */
.reveal {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Cover Slide Styles */
.cover-slide {
    text-align: center;
}

.cover-slide h1 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}
/* Content Slide Styles */
.content-slide {
    padding: 2rem;
    text-align: left;
    color: white;
}
.content-slide h2 {
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}
/* Table Slide Styles */
.table-slide {
    padding: 2rem;
    color: white;
}
.table-slide h2 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

/* General Slide Transitions */
.reveal .slides section {
    transition: all 0.3s ease;
}

/* Blue Theme Overrides */
.reveal .controls {
    color: #3b82f6;
}

.reveal .progress {
    background: rgba(30, 58, 138, 0.2);
    color: #3b82f6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content-slide .grid {
        grid-template-columns: 1fr !important;
    }
    
    .reveal h1 {
        font-size: 2.5rem !important;
    }
    
    .reveal h2 {
        font-size: 2rem !important;
    }
}