#team-network {
    width: 100%;
    height: 400px;
    background-color: #f8f9fa;
    border-radius: 4px;
    cursor: crosshair;
}

.tool-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.analysis-entry {
    border-left: 3px solid #ccc;
    padding-left: 10px;
    margin-bottom: 15px;
    animation: fadeIn 0.5s ease-in;
}

.analysis-entry.civil {
    border-color: #198754;
}

.analysis-entry.mild {
    border-color: #ffc107;
}

.analysis-entry.severe {
    border-color: #dc3545;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.inject-btn:active {
    transform: scale(0.98);
}
