html, body {
      max-width: 100%;
      overflow-x: hidden;
      background-color: #C3D9FF;
    }
		.dropdown:hover .dropdown-menu{
			display: block;
	  }

    .class-text {
}
	.jumbotron {
            background: url("../images/DJI_0008_Konvertiert_neu.webp") center center / cover no-repeat;
        }	
	    
	 .termine {
      max-height: 470px; /* Höhe für Termin- Karte einstellen */
      overflow-y: auto;
    }
	  .today {
      color: red; /* Termine am heutigen Tag in Rot anzeigen */
    }
	  
	  
	  /* Animation Regeln */
        @media (max-width: 767px) {
            .card {
                opacity: 0;
                transform: translateY(50px);
                transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            }

            .card.animate {
                opacity: 1;
                transform: translateY(0);
            }
        }
	  	  /* Animation Regeln Ende */

	  
	  /* Grundlegende Stile für den Button */
.iphone-button {
    display: inline-block;
    padding: 2px 14px; /* Innenabstand */
    margin: 5px 0; /* Außenabstand */
    font-size: 16px; /* Schriftgröße */
    font-weight: 480; /* Schriftstärke */
    text-align: center;
    color: #007aff; /* Blaue Schriftfarbe */
    background-color: #f0f0f5; /* Hellgrauer Hintergrund */
    border-radius: 30px; /* Abgerundete Ecken links und rechts */
    text-decoration: none;
}

/* Hover-Effekt für den Button */
.iphone-button:hover {
    background-color: #e0e0e0; /* Etwas dunkleres Grau bei Hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

/* Aktiver Zustand des Buttons */
.iphone-button:active {
    background-color: #d0d0d0; /* Noch dunkleres Grau bei Aktivierung */
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

/* Fokuszustand des Buttons für Tastatur-Navigation */
.iphone-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 122, 255, 0.4);
}
	  		.carousel-caption h4 {
  background-color: rgba(105, 105, 105, 0.5); /* Farbe des Kastens mit 50% Transparenz */ 
  color: #fff; /* Textfarbe */
  padding: 0px; /* Innenabstand */
  border-radius: 15px; /* Abgerundete Ecken */
}
	  
/* Pop-up Container */
.popup-container {
    display: none; /* Das Pop-up ist standardmäßig ausgeblendet */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(195, 236, 251, 0.9);
    padding: 2rem; /* Erhöhtes Padding für mehr Platz innerhalb des Pop-ups */
    z-index: 999;
    width: 600px; /* Breitere Pop-up-Größe */
    max-width: 95%; /* Passt sich an kleinere Bildschirme an */
    max-height: 90%; /* Passt sich an kleinere Bildschirme an */
    text-align: center;
	border-radius: 15px; /* Abgerundete Ecken */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); /* Optional: Schatten für mehr Tiefe */
}

	  /* Hintergrund der Unschärfe */
.blur-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0); /* Transparente Hintergrundfarbe */
    -webkit-backdrop-filter: blur(5px); /* Für Safari */
    backdrop-filter: blur(5px); /* Unschärfe für andere Browser */
    z-index: 1; /* Unter dem Popup */
}

/* Stil des Pop-up-Inhalts */
.popup-content h3 {
    margin-top: 0;
    text-align: center;
    padding: 20px;
    z-index: 999;
    width: 100%; /* Pop-up Inhalt füllt die volle Breite aus */
}

.popup-content p {
    margin-bottom: 20px;
	text-align: center;
}

/* Schließen-Button (X) */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.close-btn::before,
.close-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: black;
    transform-origin: center;
}

.close-btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
