/* AI Insights Sidebar Styles */
.ai-insights-sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background-color: #222;
    box-shadow: -3px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 1050;
    overflow-y: auto;
}

.ai-insights-sidebar.active {
    right: 0;
}

.sidebar-toggle-btn {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1040;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-toggle-btn.active {
    background-color: #0d6efd;
    color: white;
}

.sidebar-toggle-btn.pulse {
    animation: pulse-animation 2s infinite;
}

.insights-container {
    min-height: 200px;
}

.insight-card {
    position: relative;
    transition: opacity 0.3s, transform 0.3s;
}

.insight-card.priority-high {
    border-left: 4px solid var(--bs-danger);
}

.insight-card.priority-medium {
    border-left: 4px solid var(--bs-warning);
}

.insight-card.priority-low {
    border-left: 4px solid var(--bs-info);
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

/* Market-Leading Innovations styles */
.icon-circle {
    transition: transform 0.3s;
}

.card:hover .icon-circle {
    transform: scale(1.1);
}

.innovation-banner {
    background: linear-gradient(135deg, #4527a0, #8a70d6);
    color: white;
    padding: 2rem 0;
    margin-top: -20px;
    margin-bottom: 3rem;
}

/* Make market innovation cards pop more */
.market-innovation-card {
    transform: translateY(0);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

.market-innovation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.innovation-title {
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Floating action buttons for innovation demos */
.demo-fab {
    position: absolute;
    bottom: 15px;
    right: 15px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}