/* Custom styles can go here if needed, but Bootstrap handles most of the layout and form styling now. */

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.flashing-new {
    animation: flash 1s infinite;
    color: red;
    font-weight: bold;
}