.aspect-video {
    aspect-ratio: 16 / 9;
  }
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body, button, input, textarea, select, a, span, div, p, h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif !important;
}

/* Terminal Logo Styling */
.terminal-logo {
  font-family: 'SF Mono', 'Menlo', 'Monaco', 'Courier New', monospace !important;
  font-weight: bold;
  font-size: 1.5rem;
  color: #0066CC;
  text-shadow: 0 0 2px rgba(0, 102, 204, 0.5);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
}

.terminal-logo::before {
  content: ">";
  color: #28cd41;
  margin-right: 8px;
  font-size: 1.2em;
  font-weight: bold;
}

.terminal-logo span {
  animation: blink 1s step-end infinite;
  display: inline-block;
  width: 8px;
  height: 20px;
  background-color: #0066CC;
  margin-left: 4px;
  vertical-align: middle;
}

.bg-gradient {
  background-color: #222531;
}

.bg-nav {
  background-color: #323645;
  border-bottom: solid 1px #2f3137 !important;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.rounded-xl {
  border-radius: 1rem;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease-in-out;
}

.transition-all {
  transition: all 0.2s ease-in-out;
}
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 20px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #3b82f6;
}

input:checked + .slider:before {
  transform: translateX(20px);
}
footer {
  background: transparent;
  font-family: 'Inter', sans-serif;
}
.container-header {
  padding-bottom: 0.5rem;
}

.edit-title {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.bg-white:hover .edit-title {
  opacity: 1;
}

/* Pulse dot for LIVE indicator */
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

/* Ensure verification button is properly styled and clickable */
#verifyCodeBtn {
  position: relative;
  z-index: 100;
  cursor: pointer;
  transition: all 0.2s ease;
  pointer-events: auto !important;
}

#verifyCodeBtn:hover {
  background-color: rgba(40, 205, 65, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(40, 205, 65, 0.2);
}

#verifyCodeBtn:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(40, 205, 65, 0.1);
}

.terminal-menu-container {
  position: relative;
  z-index: 51; /* Ensure the container has higher z-index than other elements */
  pointer-events: auto !important;
}