.notification-show {
    animation: slideInRight 0.3s ease-out;
}

.notification-hide {
    animation: slideOutRight 0.3s ease-in;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* Стили для рамок ячеек */
.cell-success {
    border: 2px solid #28a745 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    transition: all 0.3s ease;
}

.cell-error {
    border: 2px solid #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    transition: all 0.3s ease;
}

.cell-saving {
    border: 2px solid #ffc107 !important;
    background-color: rgba(255, 193, 7, 0.1);
    position: relative;
    overflow: hidden;
}

.cell-saving::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Убедимся, что ячейки таблицы имеют правильное позиционирование */
#example td {
    position: relative;
    transition: all 0.3s ease;
}
