/* Save Session Banner Animation */
@keyframes slideInRight {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

#save-session-banner {
    animation: slideInRight 0.5s ease-out;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #save-session-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
