/* PDL Thumbnail Scene Hotspot - Icon Badge + Arrow Style */

.pnlm-hotspot-base.pdl-thumbnail-badge {
  background: transparent !important;
  border: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: visible !important;
  z-index: 1000 !important;
}

.pdl-thumbnail-badge-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  transform: translate(-50%, -100%) !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

/* Thumbnail Card */
.pdl-thumbnail-badge-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  width: 200px;
}

.pdl-thumbnail-badge-image {
  width: 100%;
  height: 100px;
  overflow: hidden;
  position: relative;
}

.pdl-thumbnail-badge-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pdl-thumbnail-icon-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  font-size: 18px;
}

.pdl-thumbnail-badge-content {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pdl-thumbnail-badge-text {
  flex: 1;
}

.pdl-thumbnail-badge-title {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif, Arial;
}

.pdl-thumbnail-badge-subtitle {
  font-size: 11px;
  color: #7f8c8d;
  font-family: 'Inter', sans-serif, Arial;
}

.pdl-thumbnail-badge-arrow {
  width: 28px;
  height: 28px;
  background: #3498db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* Leader Line */
.pdl-thumbnail-badge-leader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.pdl-thumbnail-badge-leader {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, #2ecc71, #27ae60);
  box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
  transition: height 0.3s ease;
}

.pdl-thumbnail-badge-dot {
  width: 12px;
  height: 12px;
  background: #2ecc71;
  border: 2px solid white;
  border-radius: 50%;
  margin-top: -1px;
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.3);
  animation: thumbnail-badge-pulse 2s ease-in-out infinite;
}

@keyframes thumbnail-badge-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
  }
}

/* Hover Effects */
.pdl-thumbnail-badge-wrapper:hover .pdl-thumbnail-badge-card {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pdl-thumbnail-badge-wrapper:hover .pdl-thumbnail-badge-image img {
  transform: scale(1.1);
}

.pdl-thumbnail-badge-wrapper:hover .pdl-thumbnail-badge-arrow {
  background: #2ecc71;
  transform: scale(1.15);
}

.pdl-thumbnail-badge-wrapper:hover .pdl-thumbnail-badge-leader {
  height: 58px;
}
