/* Beyond Error Styles */

.screen {
    animation: fadeIn 0.5s ease-in-out;
}

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

.incident-card {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.incident-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.investigation-panel {
    cursor: pointer;
    transition: background-color 0.2s;
    border: 2px dashed #dee2e6;
}
.investigation-panel:hover {
    background-color: #f8f9fa;
    border-color: #3498db;
}

.evidence-box {
    margin-top: 1rem;
    text-align: left;
    font-size: 0.85rem;
}
.evidence-item {
    background-color: #e3f2fd;
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 5px;
    border-left: 3px solid #3498db;
}

#balance-bar {
    transition: width 0.5s ease-in-out, background-color 0.5s;
}

.outcome-good {
    border-left: 5px solid #2ecc71;
    background-color: #e8f8f5;
    padding: 20px;
}
.outcome-bad {
    border-left: 5px solid #e74c3c;
    background-color: #fdedec;
    padding: 20px;
}
