/* RTMKit Elementor AI Icons Admin Rules */
.rtmkit-svg-layout-wrapper {
  display: flex;
  width: 100%;
}
.rtmkit-svg-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.rtmkit-svg-container svg {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.3s ease;
}

/* Micro-animations */
.rtmkit-hover-bounce {
  transition: transform 0.2s ease !important;
}
.rtmkit-hover-bounce:hover {
  transform: scale(1.1) !important;
}

.rtmkit-hover-spin {
  transition: transform 0.5s ease !important;
}
.rtmkit-hover-spin:hover {
  transform: rotate(180deg) !important;
}

@keyframes rtmkit-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.rtmkit-animate-pulse {
  animation: rtmkit-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}

.rtmkit-hover-glow {
  transition: all 0.3s ease !important;
}
.rtmkit-hover-glow:hover {
  box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3), 0 4px 6px -4px rgba(99, 102, 241, 0.3) !important;
  border-color: #818cf8 !important;
}