/* Basis */
#panelMedPrxn {
  font-family: "Times New Roman", serif;
  text-align: center;
}

/* (Optional) falls du ein Container-Element hast, das den Hintergrund/Border bekommen soll */
#customerPreviewPrxn {
  background-color: #F2F2F2;
  border: 1px solid #ffffff;
  overflow: hidden;
}

/* Counter */
#counterPanelMedPrxn {
  text-align: center;
  font-size: 120px;
  color: #ffffff;
  margin-top: 10px;
  font-weight: bold;

  /* TEXT-SCHATTEN (dauerhaft) */
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}

/* Room */
#roomPanelMedPrxn {
  text-align: center;
  font-size: 60px;
  color: #ffffff;

  /* TEXT-SCHATTEN (dauerhaft) */
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}

/* Zoom-Animation */
@keyframes zoom-animation {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.5); }
}

/* Schatten-Puls (dunkel, damit er auf weißem Text sichtbar ist) */
@keyframes text-shadow-pulse {
  0%, 100% {
    text-shadow: 0 3px 8px rgba(255, 255, 255, 0.6);
  }
  50% {
    text-shadow: 0 8px 18px rgba(255, 255, 255, 0.85);
  }
}

/* .zoom steuert Zoom + Schatten-Puls */
.zoom {
  animation:
    zoom-animation 1s ease-in-out,
    text-shadow-pulse 1.3s ease-in-out 1s 6;
}

/* Beispiel-Anwendung auf dein <select> (optional) */
.praxis-dropdownP select {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Media Queries */
@media (max-width: 767px) {
  #customerPreviewPrxn {
    width: 500px;
    height: 200px;
    border: none;
    overflow: hidden;
  }

  #counterPanelMedPrxn {
    font-size: 120px;
    margin-top: 10px;
    font-weight: bold;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  }

  #roomPanelMedPrxn {
    font-size: 50px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  }
}

@media (max-width: 575px) {
  #customerPreviewPrxn {
    width: 400px;
    height: 200px;
    border: none;
    overflow: hidden;
  }

  #counterPanelMedPrxn {
    font-size: 80px;
    margin-top: 10px;
    font-weight: bold;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  }

  #roomPanelMedPrxn {
    font-size: 40px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  }
}
