/* Additional custom styles for demo pages */
.accordion-item {
    transition: all 0.3s ease;
}

.accordion-trigger {
    transition: all 0.3s ease;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-trigger:hover .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    transition: all 0.3s ease;
}

/* Chart container improvements */
#kpiChart, #roadmapChart {
    max-height: 400px;
}

/* Logo hover effects */
.stakeholder-logo {
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.stakeholder-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Custom scrollbar for better UX */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0E8344;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0A6B37;
}

/* Responsive video */
video {
    max-width: 100%;
    height: auto;
}

/* Prose styling for content */
.prose {
    color: #374151;
    max-width: none;
}

.prose p {
    margin-bottom: 1.25rem;
}

.prose h3 {
    color: #1f2937;
    font-weight: 600;
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Navigation improvements */
nav a {
    font-weight: 500;
}

nav a:hover {
    text-decoration: none;
}