.cybertool-employeeid {
  --neon-cyan: #00f3ff;
  --cyber-purple: #7028e4;
  --matrix-green: #00ff9d;
  --cyber-black: #0a0a12;

  position: relative;
  background: radial-gradient(circle at top, #111827, var(--cyber-black));
  border-radius: 12px;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  font-family: "Courier New", monospace;
  color: #e5e7eb;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 243, 255, 0.15);
}

.cybertool-employeeid__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cybertool-employeeid__panel {
  position: relative;
  z-index: 1;
  backdrop-filter: blur(8px);
}

.cybertool-employeeid__title {
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--neon-cyan), var(--cyber-purple));
  -webkit-background-clip: text;
  color: transparent;
}

.cybertool-employeeid__layout {
  display: flex;
  gap: 1.5rem;
}

.cybertool-employeeid__box {
  flex: 1;
  background: rgba(10, 10, 18, 0.75);
  border: 1px solid rgba(0, 243, 255, 0.25);
  border-radius: 10px;
  padding: 1.2rem;
  box-shadow: inset 0 0 20px rgba(0, 243, 255, 0.08);
}

.cybertool-employeeid__label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--matrix-green);
  font-size: 0.9rem;
}

.cybertool-employeeid__input {
  width: 100%;
  margin-bottom: 1rem;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid rgba(0, 243, 255, 0.3);
  background: #020617;
  color: #fff;
}

.cybertool-employeeid__input:focus {
  outline: none;
  box-shadow: 0 0 12px var(--neon-cyan);
}

.cybertool-employeeid__btn {
  width: 100%;
  height: 44px;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, var(--cyber-purple), var(--neon-cyan));
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cybertool-employeeid__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--neon-cyan);
}

.cybertool-employeeid__output {
  min-height: 44px;
  padding: 12px;
  border-radius: 6px;
  background: #020617;
  border: 1px solid rgba(112, 40, 228, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--matrix-green);
}

/* Responsive */
@media (max-width: 600px) {
  .cybertool-employeeid__layout {
    flex-direction: column;
  }
}
