.medicoware-floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.medicoware-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  color: white;
}

/* Basisstile */
.medicoware-call {
  background-color: #00a9bc;
  border: 2px solid #00a9bc;
}

.medicoware-appointment {
  background-color: #094869;
  border: 2px solid #094869;
}

/* Label-Stil - initial versteckt */
.medicoware-action span {
  display: none;
  margin-left: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap; /* Verhindert Zeilenumbruch */
}

/* Hover-Effekte */
.medicoware-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  width: auto;
  padding: 0 20px;
  border-radius: 28px;
  color: #333;
}

/* Spezifische Hover-Regeln für Labels */
.medicoware-action:hover span {
  display: inline-block !important; /* Erzwingt die Anzeige */
}

.medicoware-call:hover {
  background-color: #e0f7fa;
  border-color: #00a9bc;
}

.medicoware-appointment:hover {
  background-color: #e3f2fd;
  border-color: #094869;
}

/* SVG-Icons im Hover-Zustand */
.medicoware-action:hover svg {
  stroke: #333;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .medicoware-floating-actions {
    right: 10px;
    bottom: 10px;
  }
  
  .medicoware-action {
    width: 48px;
    height: 48px;
  }
  
  .medicoware-action:hover {
    padding: 0 15px;
  }
}

