/* ═══════════ STAT ICONS (12 icons under stats) ═══════════ */

.stat-icons {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(140, 80, 240, 0.3);
}

.stat-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s;
  position: relative;
}

.stat-icon:hover {
  background: rgba(140, 80, 240, 0.3);
}

.stat-icon svg {
  width: 20px;
  height: 20px;
  color: rgba(168, 85, 247, 0.7);
  transition: all 0.2s;
}

.stat-icon:hover svg {
  color: #a855f7;
  filter: drop-shadow(0 0 4px rgba(168, 85, 247, 0.8));
}

.icon-count {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Orbitron", sans-serif;
}

.stat-icon:hover .icon-count {
  color: #fff;
}

/* Tooltip on hover */
.stat-icon::before {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  margin-bottom: 4px;
  z-index: 10;
}

.stat-icon:hover::before {
  opacity: 1;
}
@keyframes employeeGlow {
  0% {
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
  }
  100% {
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.9);
  }
}
.employee-section {
  margin-top: 20px;
  padding: 18px;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.15),
    rgba(168, 85, 247, 0.1)
  );
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}
.employee-info {
  margin-bottom: 15px;
}

.employee-desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin: 0;
}
/* Add Employee Button */
.add-employee-btn {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  border: 2px solid rgba(168, 85, 247, 0.6);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
  margin-bottom: 15px;
}

.add-employee-btn:hover {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  box-shadow: 0 6px 25px rgba(168, 85, 247, 0.6);
  transform: translateY(-2px);
}

.add-employee-btn svg {
  width: 20px;
  height: 20px;
}
/* ═══════════ HEADER ═══════════ */
header {
  display: flex;
  align-items: center;
  height: 110px;
  background: linear-gradient(
    90deg,
    rgba(28, 8, 70, 0.98) 0%,
    rgba(40, 12, 100, 0.96) 20%,
    rgba(55, 15, 120, 0.95) 50%,
    rgba(45, 10, 100, 0.96) 80%,
    rgba(28, 8, 70, 0.98) 100%
  );
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(120, 60, 200, 0.5);
}
header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 60% 200% at 55% 50%,
      rgba(100, 30, 200, 0.22) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 25% 200% at 100% 50%,
      rgba(80, 20, 160, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 20% 200% at 0% 50%,
      rgba(80, 20, 160, 0.15) 0%,
      transparent 60%
    );
}
header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(
      1px 1px at 12% 30%,
      rgba(255, 255, 255, 0.6) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 22% 70%,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 35% 20%,
      rgba(255, 255, 255, 0.5) 0%,
      transparent 100%
    ),
    radial-gradient(
      1.5px 1.5px at 48% 60%,
      rgba(255, 255, 255, 0.55) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 60% 35%,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 70% 75%,
      rgba(255, 255, 255, 0.45) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 80% 25%,
      rgba(255, 255, 255, 0.5) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 90% 55%,
      rgba(255, 255, 255, 0.35) 0%,
      transparent 100%
    );
}
header > * {
  position: relative;
  z-index: 1;
}
.h-glow-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #6d28d9 10%,
    var(--purple3) 30%,
    var(--pink1) 60%,
    #f97316 80%,
    transparent 100%
  );
  opacity: 0.7;
  z-index: 2;
}

.h-logo {
  display: flex;
  align-items: center;
  padding: 0 24px 0 20px;
  height: 100%;
  flex-shrink: 0;
}
.logo-text {
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--white);
  white-space: nowrap;
}
.logo-text .ya {
  color: var(--yellow);
}
.h-sep {
  width: 1px;
  height: 38px;
  background: rgba(120, 60, 200, 0.55);
  flex-shrink: 0;
  margin: 0 2px;
}

.h-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 26px;
  height: 100%;
  flex-shrink: 0;
}
.h-contact .lbl {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text2);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.h-contact .val {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
}

.h-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  flex-shrink: 0;
  width: 100%;
}
.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(140, 80, 240, 0.5);
  border-radius: 6px;
  /* padding: 5px 16px; */
  min-width: 8%;
  background: rgba(60, 20, 120, 0.25);
  backdrop-filter: blur(4px);
}
.s-num {
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.s-num .sfx {
  font-size: 13px;
  color: var(--purple4);
  font-weight: 600;
}
.s-lbl {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text3);
  margin-top: 3px;
  text-transform: uppercase;
}

.h-spacer {
  flex: 1;
}

.h-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  height: 100%;
  flex-shrink: 0;
}
.h-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2.5px solid var(--purple3);
  overflow: hidden;
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.6);
  flex-shrink: 0;
  background: #1a0540;
}
.h-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.h-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  border: 1px solid rgba(120, 60, 200, 0.45);
  background: rgba(80, 30, 160, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text2);
  transition: all 0.2s;
}
.h-icon:hover {
  border-color: var(--purple3);
  background: rgba(124, 58, 237, 0.35);
  color: var(--white);
}
.h-icon svg {
  width: 17px;
  height: 17px;
}
body {
  margin: 0;
  font-family: Arial;
  color: white;

  background: url("https://jamayaai.com/wp-content/themes/Theme/templates/images/bg.jpg");
  background-size: cover;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(20, 10, 60, 0.85),
    rgba(60, 0, 90, 0.75),
    rgba(0, 0, 40, 0.9)
  );
  z-index: -1;
}

/* HEADER */
#jamaya-chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}
/* serach */
.ai-filter {
  width: 170px;
  padding: 10px;
  border-radius: 16px;

  background: rgba(35, 15, 80, 0.65);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(150, 100, 255, 0.25);

  box-shadow:
    0 0 25px rgba(130, 60, 255, 0.35),
    inset 0 0 15px rgba(255, 255, 255, 0.03);
}

.filter-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #3ff8ff;
}

.ai-input {
  display: flex;
  align-items: center;
  margin-bottom: 12px;

  background: rgba(20, 10, 50, 0.9);
  border: 1px solid rgba(120, 80, 255, 0.35);

  border-radius: 10px;
  padding: 6px 10px;

  transition: all 0.25s;
}

.ai-input:hover {
  border-color: #8c6bff;
  box-shadow: 0 0 12px rgba(140, 100, 255, 0.35);
}

.ai-icon {
  margin-right: 8px;
  font-size: 14px;
}

.ai-input select {
  width: 100%;
  background: darkslategray;
  border: none;
  color: #000000;
  font-size: 13px;
  outline: none;
}

.ai-search-btn {
  width: 100%;
  margin-top: 10px;

  border: none;
  border-radius: 10px;

  padding: 10px;

  font-weight: 600;
  color: white;

  background: linear-gradient(90deg, #7c3aed, #a855f7, #ec4899);

  cursor: pointer;

  transition: all 0.3s;
}

.ai-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(200, 80, 255, 0.6);
}
/* AVATAR BUTTON */

#chat-avatar {
  border-radius: 50%;
  cursor: pointer;

  box-shadow:
    0 0 10px #00ffff,
    0 0 25px #00ffff,
    0 0 40px #7efcff;

  animation: glow 3s infinite alternate;
  /* height: 10%; */
  /* width: 50%; */
}

#chat-avatar img {
  width: 100%;
  border-radius: 50%;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px cyan;
  }

  to {
    box-shadow: 0 0 35px cyan;
  }
}
#elevenlabs-widget {
  display: none;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 40px;

  border-bottom: 1px solid rgba(0, 255, 255, 0.4);

  background: rgba(10, 10, 40, 0.6);

  backdrop-filter: blur(6px);
}

.logo img {
  height: 150px;
}

.direct-contact {
  text-align: center;

  font-size: 14px;
}

.stats {
  font-size: 14px;

  opacity: 0.8;
}

/* PORTAL */

.portal-container {
  display: flex;

  gap: 0px;

  padding: 3px;
}

/* AVATAR SIDEBAR */
sidebar-avatar.avatar-section {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sidebar-avatar {
  width: 195px;
  /* padding: 20px 20px; */
  /* margin-bottom: 20px; */
  text-align: center;
  background: rgba(80, 20, 180, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  background: linear-gradient(180deg, #2b0b5c, #14052e);
  /* border-radius: 18px; */

  height: 100%;
  border-top-width: 0px;

  border-left-width: 0px;
  padding: 0px 0px 0px 0px;
}

.avatar-section {
  background: #0f0a25;
  padding: 20px 10px;
  /* border-radius: 16px; */
  margin-bottom: 20px;
  text-align: center;

  /* subtle card effect */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* .avatar-box {
  width: 90px;
  height: 90px;
  margin: 15px auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-box img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
} */
/* Avatar Menu */
/* ═══════════════════════════════════════════════════════════
   BEAUTIFUL MENU DESIGN - NEON BLOCKS
   ═══════════════════════════════════════════════════════════ */

/* Avatar Menu Container */
.avatar-menu {
  margin-top: 20px;
  padding: 0 10px;
}

.jamaya-menu-container {
  width: 100%;
}

.jamaya-menu-head {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.jamaya-menu-head li {
  margin: 0;
  width: 100%;
}

.jamaya-menu-head a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  /* background: linear-gradient(135deg, rgba(107, 47, 181, 0.3), rgba(164, 69, 237, 0.3)); */
  /* border: 1px solid rgba(164, 69, 237, 0.4); */
  border-radius: 10px;
  color: #00ffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  /* transition: all 0.3s ease; */
  position: relative;
  overflow: hidden;
}

/* Hover glow effect */
.jamaya-menu-head a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 255, 0.2),
    transparent
  );
  /* transition: left 0.5s ease; */
}

.jamaya-menu-head a:hover::before {
  left: 100%;
}

.jamaya-menu-head a:hover {
  border-color: rgba(0, 255, 255, 0.6);
  color: #fff;
  /* transform: translateX(5px); */
}

/* Add icon spacing if menu items have icons */
.jamaya-menu-head a .menu-icon {
  margin-right: 10px;
  font-size: 16px;
}

.jamaya-menu-head a .menu-arrow {
  font-size: 12px;
  opacity: 0.6;
  /* transition: all 0.3s ease; */
}

.jamaya-menu-head a:hover .menu-arrow {
  opacity: 1;
  /* transform: translateX(3px); */
}

/* Active menu item */
.jamaya-menu-head li.current-menu-item a,
.jamaya-menu-head li.current_page_item a {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.2),
    rgba(164, 69, 237, 0.4)
  );
  border-color: #00ffff;
  color: #fff;
  box-shadow:
    0 6px 20px rgba(0, 255, 255, 0.3),
    0 0 20px rgba(0, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ═══════════ ENHANCED BUSINESS TITLE ═══════════ */

.business-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 15px 0;
  text-align: center;
  cursor: pointer;
  padding: 14px;
  background: linear-gradient(
    135deg,
    rgba(107, 47, 181, 0.4),
    rgba(164, 69, 237, 0.4)
  );
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 15px rgba(164, 69, 237, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.business-title::after {
  content: "▼";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #00ffff;
  transition: transform 0.3s ease;
}

.business-title.active::after {
  transform: translateY(-50%) rotate(180deg);
}

.business-title:hover {
  background: linear-gradient(
    135deg,
    rgba(107, 47, 181, 0.6),
    rgba(164, 69, 237, 0.6)
  );
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow:
    0 6px 20px rgba(164, 69, 237, 0.4),
    0 0 30px rgba(0, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ═══════════ MENU ICONS (OPTIONAL) ═══════════ */

/* Add these classes to your menu items for icons */
.menu-item-home a::before {
  content: "🏠";
  margin-right: 10px;
}
.menu-item-services a::before {
  content: "⚡";
  margin-right: 10px;
}
.menu-item-account a::before {
  content: "👤";
  margin-right: 10px;
}
.menu-item-shop a::before {
  content: "🛒";
  margin-right: 10px;
}

/* ═══════════ RESPONSIVE ADJUSTMENTS ═══════════ */

@media (max-width: 992px) {
  .jamaya-menu-head a {
    padding: 12px 14px;
    font-size: 13px;
  }
}

/* ═══════════ ALTERNATE MENU STYLE (GLASS MORPHISM) ═══════════ */

.jamaya-menu-head.glass-style a {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.jamaya-menu-head.glass-style a:hover {
  background: rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-color: rgba(0, 255, 255, 0.3);
}

/* ═══════════ NEON GLOW STYLE ═══════════ */

.jamaya-menu-head.neon-glow a {
  background: transparent;
  border: 2px solid rgba(0, 255, 255, 0.3);
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.jamaya-menu-head.neon-glow a:hover {
  border-color: #00ffff;
  box-shadow:
    0 0 20px rgba(0, 255, 255, 0.4),
    0 0 40px rgba(0, 255, 255, 0.2),
    inset 0 0 20px rgba(0, 255, 255, 0.1);
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}
.avatar-section::after {
  content: "";
  display: block;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 15px;
}

.contact-box {
  margin-top: 15px;

  font-size: 14px;
}

.search-box {
  margin-top: 20px;

  padding: 15px;

  border-radius: 12px;

  border: 1px solid rgba(255, 255, 255, 0.3);

  background: rgba(255, 255, 255, 0.05);
}

.search-box h3 {
  color: #00ffff;
}

/* SITE LIST */

.site-list {
  margin-top: 20px;
}

.site-item {
  display: flex;

  align-items: center;

  gap: 10px;

  padding: 10px;

  margin-bottom: 10px;

  border-radius: 10px;

  border: 1px solid rgba(255, 255, 255, 0.2);

  transition: 0.3s;
}

.site-item:hover {
  border: 1px solid cyan;

  box-shadow: 0 0 10px cyan;
}

.site-item img {
  width: 40px;
}

.site-item a {
  color: white;

  text-decoration: none;
}

/* BUSINESS SIDEBAR */

.sidebar-business {
  width: 161px;
  padding: 15px;
  background: #0f0a25;
  border-right: 1px solid #2e3a70;
  color: #fff;
  font-family: Arial;
  /* margin-bottom: auto; */
}
.sidebar-business h3 {
  color: #00ffff;
  text-shadow: 0 0 8px #00ffff;
  margin-bottom: 10px;
}
.sidebar-business h4 {
  color: #7efcff;
  margin-top: 15px;
  font-size: 14px;
}
.product-search-box input,
.product-search-box select {
  width: 100%;
  padding: 6px;
  margin-bottom: 6px;
  background: #1a143d;
  border: 1px solid #2e3a70;
  color: #fff;
}
.sidebar-action button {
  width: 100%;
  padding: 8px;
  margin-top: 6px;
  background: #6a2cff;
  border: none;
  color: #fff;
  cursor: pointer;
}
.sidebar-action button:hover {
  background: #8a4dff;
}

/* MAIN AREA */

.main-area {
  flex: 1;
}

/* HERO */

.hero {
  background: linear-gradient(135deg, #3826a0, #5a2be2);

  padding: 40px;

  border-radius: 16px;

  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.hero h1 {
  font-size: 34px;
}

.hero p {
  opacity: 0.8;
}

.hero-btn {
  margin-top: 20px;

  background: #9cff00;

  border: none;

  padding: 12px 25px;

  border-radius: 8px;

  font-weight: bold;

  cursor: pointer;
}

/* FEATURES */

.features {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

  margin-top: 30px;
}

.feature-card {
  padding: 25px;

  border-radius: 14px;

  background: rgba(0, 0, 0, 0.4);

  border: 1px solid rgba(255, 255, 255, 0.2);

  transition: 0.3s;
}

.feature-card:hover {
  border: 1px solid cyan;

  box-shadow: 0 0 20px cyan;
}

/* FOOTER */

.footer {
  margin-top: 2px;

  border-top: 1px solid rgba(0, 255, 255, 0.3);

  padding: 40px;

  background: rgba(10, 10, 30, 0.8);
}

.footer-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 40px;
}

.footer-col h3 {
  color: #00ffff;
}

.footer-col ul {
  list-style: none;

  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 30px;

  text-align: center;

  opacity: 0.7;
}
/* For smaller screens */
@media (max-width: 1400px) {
  .stat-box {
    min-width: 90px;
    padding: 6px 10px;
  }

  .stat-icons {
    gap: 4px;
  }

  .stat-icon svg {
    width: 14px;
    height: 14px;
  }

  .icon-count {
    font-size: 8px;
  }
}
/* ═══════════ CONTENT VIEWS ═══════════ */

.content-view {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.content-view.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════ FORM HEADER ═══════════ */

.form-header {
  margin-bottom: 30px;
}

.form-header h1 {
  font-size: 36px;
  margin: 0 0 10px 0;
  background: linear-gradient(90deg, #00eaff, #7a5cff, #ff4fd8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.form-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ═══════════ EMPLOYEE FORM CONTAINER ═══════════ */

.employee-form-container {
  display: grid;
  /* grid-template-columns: 300px 1fr; */
  gap: 40px;
  background: rgba(10, 10, 40, 0.6);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
}

/* ═══════════ FORM BENEFITS ═══════════ */

.form-benefits {
  position: sticky;
  top: 20px;
}

.form-benefits h3 {
  font-size: 20px;
  color: #fff;
  margin: 0 0 20px 0;
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

/* ═══════════ FORM WRAPPER ═══════════ */

.form-wrapper {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ═══════════ EMPLOYEE FORM ═══════════ */

.employee-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group label svg {
  width: 16px;
  height: 16px;
  color: #a855f7;
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #a855f7;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* ═══════════ FORM ACTIONS ═══════════ */

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.btn-secondary,
.btn-primary {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #fff;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 6px 25px rgba(168, 85, 247, 0.6);
  transform: translateY(-2px);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
}

/* ═══════════ RESPONSIVE ═══════════ */

@media (max-width: 1200px) {
  .employee-form-container {
    grid-template-columns: 1fr;
  }

  .form-benefits {
    position: static;
  }
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .permission-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }
}
/* #main-menu1 {
  display: none;
  position: absolute;
  top: 40px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 8px;
}

.jamaya-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jamaya-menu li {
  padding: 8px 12px;
}
#main-menu2 {
  display: none;
  position: absolute;
  top: 40px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 8px;
}

.jamaya-menu2 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jamaya-menu2 li {
  padding: 8px 12px;
} */
.context-menu {
  display: none;
  position: absolute;
  background: #111;
  color: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 9999;
}
.context-menu {
  display: none;
  position: absolute;
  background: #111;
  color: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 9999;
}
.context-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.context-menu li {
  padding: 8px 12px;
  cursor: pointer;
}

.context-menu li:hover {
  background: #333;
}
.product-search-box {
  padding: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-search-box input,
.product-search-box select {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  background: #111;
  color: #fff;
  border: 1px solid #444;
  border-radius: 4px;
}

/* .product-search-box button {
  width: 100%;
  padding: 10px;
  background: #6c3cff;
  color: #fff;
  border: none;
  cursor: pointer;
} */
.jamaya-form-box {
  margin-top: 30px;
  color: white;
}

.jamaya-form-box h2 {
  color: #8af7ff;
  margin-bottom: 20px;
}

.jamaya-form-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.jamaya-form-row label {
  color: #c8faff;
  font-size: 14px;
}

.jamaya-form-row select {
  background: #0c0c1c;
  border: 1px solid #3c3c7a;
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
}

.jamaya-btn {
  background: linear-gradient(90deg, #6b3cff, #8c52ff);
  border: none;
  color: white;
  padding: 7px 14px;
  border-radius: 4px;
  cursor: pointer;
  margin: 22px 0px 0px 10px;
}

.jamaya-btn:hover {
  opacity: 0.85;
}
/* ═══════════════════════════════════════════════════════════
   PRODUCT SUBMISSION DASHBOARD - COMPLETE STYLES
   ═══════════════════════════════════════════════════════════ */

:root {
  --primary: #a855f7;
  --primary-dark: #7c3aed;
  --secondary: #00eaff;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --dark: #0f0f2a;
  --dark-lighter: #1a1a3e;
  --border: rgba(168, 85, 247, 0.3);
  --text: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.6);
}

/* ═══════════ MAIN CONTENT ═══════════ */

.product-main-content {
  padding: 40px;
  overflow-y: auto;
  /* max-height: 100vh; */
}

/* Content Sections */
.content-section {
  animation: fadeInUp 0.4s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header {
  margin-bottom: 30px;
}

.section-header h1 {
  margin: 0 0 10px 0;
  font-size: 32px;
  color: var(--text);
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  margin: 0;
  font-size: 16px;
  color: var(--text-muted);
}

/* ═══════════ PRODUCT FORM ═══════════ */

.product-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Form Card */
.form-card {
  background: rgba(20, 30, 80, 0.4);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 25px;
  backdrop-filter: blur(10px);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.card-header svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.card-header h3 {
  margin: 0;
  font-size: 18px;
  color: var(--text);
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

/* Labels */
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Inputs */
.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Checkbox Labels */
.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-transform: none;
  font-weight: 500;
}

.form-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary);
}

/* ═══════════ IMAGE UPLOAD ═══════════ */

.image-upload-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.upload-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Main Image Upload */
.main-image-upload {
  display: flex;
  flex-direction: column;
}

.image-upload-box {
  position: relative;
  width: 100%;
  height: 300px;
  border: 2px dashed var(--border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  overflow: hidden;
}

.image-upload-box:hover {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.image-upload-box input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.upload-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 1;
}

.upload-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
}

.upload-placeholder p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.upload-placeholder span {
  font-size: 13px;
  color: var(--text-muted);
}

.image-preview {
  position: absolute;
  inset: 0;
  display: none;
  z-index: 3;
}

.image-preview.active {
  display: block;
}

.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-preview .remove-image {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: var(--danger);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 4;
}

.image-preview .remove-image:hover {
  background: #dc2626;
  transform: scale(1.1);
}

/* Gallery Upload */
.gallery-images-upload {
  display: flex;
  flex-direction: column;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-upload-box {
  position: relative;
  width: 100%;
  height: 140px;
  border: 2px dashed var(--border);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-upload-box:hover {
  border-color: var(--primary);
}

.gallery-upload-box input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.upload-placeholder-small {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 8px;
}

.upload-placeholder-small svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.upload-placeholder-small p {
  margin: 0;
  font-size: 13px;
  color: var(--text);
}

.gallery-preview-item {
  position: relative;
  width: 100%;
  height: 140px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-preview-item .remove-gallery-image {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: var(--danger);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ═══════════ CATEGORY CHECKBOXES ═══════════ */

.category-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.checkbox-label:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: var(--border);
}

.checkbox-label input[type="checkbox"]:checked + span {
  color: var(--secondary);
  font-weight: 600;
}

.checkbox-label span {
  font-size: 13px;
  color: var(--text);
}

/* ═══════════ VARIATIONS ═══════════ */

.variations-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#attributes-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.attribute-item {
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.attribute-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.attribute-header h4 {
  margin: 0;
  font-size: 16px;
  color: var(--text);
  text-transform: capitalize;
}

.remove-attribute {
  width: 28px;
  height: 28px;
  background: var(--danger);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  font-size: 18px;
}

.attribute-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.attribute-value-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid var(--primary);
  border-radius: 20px;
  color: var(--text);
  font-size: 13px;
}

.attribute-value-tag button {
  width: 16px;
  height: 16px;
  background: var(--danger);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
}

.add-value-input {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.add-value-input input {
  flex: 1;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
}

.add-value-input button {
  padding: 8px 16px;
  background: var(--primary);
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

/* Variations Grid */
.variations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.variation-item {
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.variation-item h5 {
  margin: 0 0 15px 0;
  font-size: 14px;
  color: var(--secondary);
}

.variation-item .form-group {
  margin-bottom: 12px;
}

.variation-item label {
  font-size: 11px;
  margin-bottom: 5px;
}

.variation-item input {
  padding: 8px 12px;
  font-size: 13px;
}

/* ═══════════ FORM ACTIONS ═══════════ */

.form-actions {
  display: flex;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.btn-primary,
.btn-secondary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary svg,
.btn-secondary svg {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 6px 30px rgba(168, 85, 247, 0.6);
  transform: translateY(-2px);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ═══════════ PRODUCTS LIST ═══════════ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.product-card {
  background: rgba(20, 30, 80, 0.4);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.product-card-image {
  width: 100%;
  height: 200px;
  background: rgba(0, 0, 0, 0.3);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  padding: 15px;
}

.product-card-title {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: var(--text);
}

.product-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
}

.product-card-actions {
  display: flex;
  gap: 8px;
  padding: 15px;
  border-top: 1px solid var(--border);
}

.product-card-actions button {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* ═══════════ RESPONSIVE ═══════════ */

@media (max-width: 1200px) {
  .product-dashboard-container {
    grid-template-columns: 250px 1fr;
  }
}

@media (max-width: 992px) {
  .product-dashboard-container {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    display: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .image-upload-section {
    grid-template-columns: 1fr;
  }

  .category-checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-main-content {
    padding: 20px;
  }

  .form-actions {
    flex-direction: column;
  }

  .category-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════ LOADING STATES ═══════════ */

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  color: var(--text-muted);
}

.loading::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 4px solid rgba(168, 85, 247, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ═══════════ SUCCESS/ERROR MESSAGES ═══════════ */

.message {
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.message.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
}

.message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--danger);
  color: var(--danger);
}

.message svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.ai-footer {
  margin-top: 2px;

  border-top: 1px solid rgba(0, 255, 255, 0.3);
  /* 
  padding: 10px; */

  background: rgba(10, 10, 30, 0.8);
}

.footer-inner {
  display: flex;
  align-items: stretch; /* IMPORTANT */
  gap: 25px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  width: 10%;
}

.footer-divider {
  width: 2px;
  background: #00d0ff;
  min-height: 80px; /* ensures full line */
}

.footer-right {
  flex: 1;
  color: #fff;
  font-size: 14px;
  padding: 40px;
}

.footer-row2 {
  margin-top: 8px;
}

.plus-icon {
  font-size: 28px;
  color: #8a5cff;
}

.create-btn {
  background: #43b049;
  border: none;
  padding: 4px 12px;
  border-radius: 4px;
  color: white;
  margin-left: 8px;
  cursor: pointer;
}
/* ═══════════════════════════════════════════════════════════
   AGENT VIDEO MODAL
   Add this CSS to your main.css or page template
   ═══════════════════════════════════════════════════════════ */

/* Make agent names look clickable */
/* ── AGENT VIDEO MODAL ── */
.agent-video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.agent-video-modal.active {
  display: flex !important;
}
.avm-box {
  background: linear-gradient(135deg, #1a0f2e, #0d0521);
  border: 1px solid rgba(168, 85, 247, 0.5);
  border-radius: 16px;
  width: 100%;
  max-width: 860px;
  box-shadow: 0 0 60px rgba(168, 85, 247, 0.4);
  overflow: hidden;
  position: relative;
  z-index: 1000000;
}
.avm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.25);
}
.avm-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.avm-close {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
  font-family: inherit;
}
.avm-close:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.5);
  color: #fca5a5;
}
.avm-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}
.avm-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.avm-no-video {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
  gap: 14px;
}
.avm-no-video svg {
  width: 52px;
  height: 52px;
  opacity: 0.25;
}
.avm-footer {
  padding: 14px 20px;
  border-top: 1px solid rgba(168, 85, 247, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.avm-agent-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 560px;
  line-height: 1.5;
  margin: 0;
}
.avm-employ-btn {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: inherit;
}
.avm-employ-btn:hover {
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
  transform: translateY(-1px);
}
/* make td-name look clickable */
.td-name {
  cursor: pointer !important;
  color: #a855f7 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.td-name:hover {
  color: #c084fc !important;
}
