/* Session Warning Styles */
.session-warning {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #f6ad55, #fc8181);
  padding: 16px 20px;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.warning-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 600;
}

.warning-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.warning-text {
  flex: 1;
  font-size: 14px;
}

.warning-text a {
  color: #ffffff;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 700;
  margin-left: 4px;
}

.warning-text a:hover {
  opacity: 0.9;
}

.warning-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.warning-close:hover {
  opacity: 0.8;
}

/* Session Info Display (optional - for debugging) */
.session-info {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: #4fd1c5;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-family: monospace;
  z-index: 9998;
  display: none;
}

.session-info.show {
  display: block;
}
