/* Circle editing and options menu styles */

.circle-edit {
  position: absolute;
  background: white;
  border: 2px solid #3498db;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.circle-edit input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 12px;
  width: 100px;
}

.circle-options-menu {
  animation: fadeIn 0.2s ease-in-out;
}

.circle-options-menu button {
  transition: all 0.2s ease;
}

.circle-options-menu button:hover {
  transform: scale(1.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}