/* Custom styles */
.swot-card {
    transition: all 0.3s ease;
}

.swot-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.strength {
    border-left: 4px solid #10B981;
}

.weakness {
    border-left: 4px solid #EF4444;
}

.opportunity {
    border-left: 4px solid #3B82F6;
}

.threat {
    border-left: 4px solid #F59E0B;
}

.risk-meter {
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.risk-low {
    background-color: #10B981;
}

.risk-medium {
    background-color: #F59E0B;
}

.risk-high {
    background-color: #EF4444;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.loading-pulse {
    animation: pulse 1.5s infinite;
}