.highlightBooking {
    border-radius: 3px;
    animation: highlight 2000ms ease-out;
}

@keyframes highlight {
    0% {
        background-color: blue;
    }
    100% {
        background-color: white;
    }
}

.rowGradient {
    background-image: repeating-linear-gradient(-45deg, white 0%, white 2%, rgba(168, 185, 209, 0.1) 2%, rgba(168, 185, 209, 0.1) 4%, white 4%);
}