/* Global Redirect Terminal Modal */
#globalRedirectModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(10px);
}

#globalRedirectModal.active {
  visibility: visible;
  opacity: 1;
}

.redirect-terminal-box {
  background: rgba(255, 255, 255, 0.85); 
  backdrop-filter: blur(10px);
  border: 2px solid #111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 600px;
  min-height: 200px;
  padding: 2rem;
  font-family: 'Share Tech Mono', monospace;
  color: #333; 
  border-radius: 0;
  position: relative;
}

.redirect-terminal-header {
  border-bottom: 2px dashed #ccc;
  padding-bottom: 0.8rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#redirectTerminalOutput {
  font-size: 1.1rem;
  line-height: 1.8;
  white-space: pre-wrap;
  display: inline;
}
