/* Стиль для выбранного элемента сетки */
.selected-grid-item {
    background-color: rgba(161, 203, 14, 0.15) !important;
    border: 1px solid rgba(161, 203, 14, 0.3) !important;
    box-shadow: 0 0 0 1px rgba(161, 203, 14, 0.1);
    transform: scale(1.02);
    transition: all 0.1s ease;
}

/* Пульсация при выборе */
@keyframes selectPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(161, 203, 14, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 5px rgba(161, 203, 14, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(161, 203, 14, 0); }
}

.select2-grid-item.pulse {
    animation: selectPulse 0.1s ease-in-out;
}
