/* Beta Banner for Marketing Pages */
.beta-banner {
  background: linear-gradient(90deg, #ff8c00 0%, #ff5722 100%); /* Changed to orange gradient */
  color: white;
  padding: 16px 20px; /* Made taller */
  text-align: center;
  position: relative;
  z-index: 1000; /* Ensure it's above other elements */
  font-size: 16px; /* Larger text */
  box-shadow: 0 2px 10px rgba(255, 87, 34, 0.3); /* Add shadow for prominence */
}

.beta-banner-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 16px; /* Increased from 15px */
}

.beta-tag {
  background: rgba(255, 255, 255, 0.25);
  padding: 4px 10px; /* Slightly larger */
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px; /* Increased from 13px */
  letter-spacing: 0.5px;
}

.beta-message {
  font-weight: 600; /* Increased from 500 */
}

.beta-cta {
  background-color: white;
  color: #ff5722; /* Match to banner */
  padding: 8px 18px; /* Larger button */
  border-radius: 6px;
  font-weight: 700; /* Bolder */
  font-size: 15px; /* Larger */
  text-decoration: none;
  transition: all 0.2s ease;
}

.beta-cta:hover {
  background-color: #fff9f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.close-beta-banner {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px; /* Larger */
  cursor: pointer;
  padding: 5px;
}

.close-beta-banner:hover {
  color: white;
}

/* Beta Badge for App Pages */
.beta-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #ff8c00 0%, #ff5722 100%); /* Changed to orange gradient */
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  margin-left: 10px;
  letter-spacing: 0.5px;
}