.thumb-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.thumb-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #e9ecef;
}

.flash-success {
    animation: flash-green 1.2s ease-out;
}

.flash-error {
    animation: flash-red 1.2s ease-out;
}

@keyframes flash-green {
    0% { background-color: #d1e7dd; }
    100% { background-color: transparent; }
}

@keyframes flash-red {
    0% { background-color: #f8d7da; }
    100% { background-color: transparent; }
}

#products-table {
    background: #fff;
}
