.session-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: white;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.5;
  animation: slideInFromRight 0.3s ease-out;
}

.session-notification strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}

.session-notification-buttons {
  margin-top: 12px;
  display: flex;
  gap: 8px;
}

.session-notification-btn {
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  border: none;
  transition: all 0.2s ease;
}

.session-notification-btn.primary {
  background: white;
  color: #ff9800;
  font-weight: 600;
}

.session-notification-btn.primary:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
}

.session-notification-btn.secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.session-notification-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

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

.session-notification.fade-out {
  animation: fadeOut 0.3s ease-in forwards;
}

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

/* Mobile responsive */
@media (max-width: 768px) {
  .session-notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    margin: 0 10px;
  }
}