.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

#iac-editor:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 5px rgba(56, 189, 248, 0.5);
}

.flash-red {
    animation: flashRed 0.5s ease-out;
}

.flash-green {
    animation: flashGreen 0.5s ease-out;
}

@keyframes flashRed {
    0% { background-color: rgba(239, 68, 68, 0.3); }
    100% { background-color: transparent; }
}

@keyframes flashGreen {
    0% { background-color: rgba(16, 185, 129, 0.3); }
    100% { background-color: transparent; }
}
