/* Animated Beam Styles */

.animated-beam-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.animated-beam-circle {
  z-index: 10;
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  background-color: white;
  padding: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.animated-beam-circle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.animated-beam-circle--large {
  width: 3.5rem;
  height: 3.5rem;
  padding: 0.875rem;
}

.animated-beam-circle--large svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* Exemple de layout pour les beams */
.animated-beam-layout {
  display: flex;
  width: 100%;
  max-width: 32rem;
  height: 100%;
  max-height: 12.5rem;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 2.5rem;
}

.animated-beam-layout--horizontal {
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}

.animated-beam-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.animated-beam-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

