/* AWS Startup Optimized - Modern Tech Theme */

/* Accent color for AI/Tech identity */
:root {
    --aws-accent: #007bff; /* Electric Blue */
    --aws-bg: #111827;     /* Deep Modern Gray */
}

.base-color {
  color: var(--aws-accent) !important;
}

/* Copy Animation - Professional Notification */
.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.copied::after {
  position: absolute;
  top: -10px; /* Moved slightly up for better visibility */
  right: 12%;
  width: auto;
  min-width: 80px;
  display: block;
  content: "AI OPTIMIZED"; /* Text schimbat pentru a sublinia natura platformei */
  font-size: 0.85em;
  font-weight: 600;
  padding: 6px 12px;
  color: #fff;
  background-color: var(--aws-accent);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,123,255,0.3);
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes showcopied {
  0% { opacity: 0; transform: translateY(10px); }
  20% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-10px); }
}

/* Cookies Card - Enterprise Style */
.cookies-card {
  width: 480px;
  padding: 25px;
  color: #e5e7eb;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999999;
  transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.1);
  background-color: var(--aws-bg);
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.cookies-btn {
  background: var(--aws-accent);
  color: #ffffff !important;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 25px;
  margin: 5px;
  display: inline-block;
  border-radius: 6px;
  transition: transform 0.2s;
}

.cookies-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,123,255,0.4);
}

/* AI Input Popup - Dark Mode Tech */
.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 135%;
  left: 50%;
  width: 300px;
  background-color: #0f172a; /* Slate Dark */
  border: 1px solid var(--aws-accent);
  color: #f8fafc;
  padding: 18px;
  border-radius: 10px;
  transform: translateX(-50%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.input-popup p.success::before {
  content: "\f058";
  color: #10b981; /* Emerald Green */
}

.input-popup p.error::before {
  content: "\f057";
  color: #ef4444; /* Rose Red */
}

/* Modern Spinner for AI Processing */
button .spinner-border {
  --bs-spinner-width: 1.2rem;
  --bs-spinner-height: 1.2rem;
  color: var(--aws-accent);
}