/*general*/

body {
    font-family: Arial, sans-serif;
  }
  
  .navbar-desktop {
    display: none;
  }

  .navbar {
    width: 100%;
    background-color: rgba(217, 217, 217, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 10;
  }
  
  .navbar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
  }
  
  .logo {
    height: 40px;
    border-radius: 8px;
  }

  .logoContainer {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .logoLink {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  
  .logoText {
    margin-left: 30px;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1a3d5c;
    letter-spacing: 1px;
    transition: color 0.3s ease;
  }
  
  .logoLink:hover .logoText {
    color: #0066ff;
  }
  
  .hamburger {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a3d5c;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: rgba(217, 217, 217, 0.95);
  }
  
  .nav-links.show {
    display: flex;
  }
  
  .nav-links a,
  .nav-btn {
    width: 300px;
    text-align: center;
    padding: 16px;
    border-radius: 4px;
    background-color: #5A6B7A;
    color: white;
    text-decoration: none;
  }

  .nav-btn {
    border: none;
    cursor: pointer;
    font: inherit;
  }  
  
  .nav-links a:hover,
  .nav-btn:hover {
    background-color: #2e4a52;
    color: #fff;
  }
  
  .track-button {
    background-color: #0066ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .track-button:hover {
    background-color: #0057d9;
  }
  
  
  .trackPopupText {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
  }
  
  .trackID {
    width: 90%;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
  }
  
  .trackID:focus {
    border-color: #0066ff;
  }
  
  .trackPopup {
    display: none; /* Standardmäßig ausgeblendet */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Transparenter Hintergrund */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Überlagerung über alle Elemente */
  }
  
  .trackPopup-content {
    background: linear-gradient(135deg, #ffffff, #f3f3f3);
    border-radius: 15px;
    width: 400px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .popup-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .popup-description {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
  }
  
  .trackPopup-content button {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background-color: rgba(217, 217, 217, 0.9);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 200px;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
  }
  
  .close:hover {
    color: #333;
  }
  
  /* Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  /* home.html */
  body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
  }
  
  h1, h2, h3 {
    font-weight: 700;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 50px;
    overflow: hidden;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('images/chillSetup.jpeg') no-repeat center center/cover;
    filter: brightness(0.75); /* Passe die Helligkeit hier an */
    z-index: -1; /* Damit der Inhalt davor bleibt */
  }
  
  .hero a {
    text-decoration: none;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), -2px -2px 4px rgba(0, 0, 0, 0.7);
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeIn 2s ease-in-out 0.5s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), -2px -2px 4px rgba(0, 0, 0, 0.7);
  }
  
  .cta-button {
    padding: 15px 30px;
    background-color: #0066ff;
    color: #fff;
    border-radius: 30px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #0057d9;
  }
  
  /* About Section */
  .about {
    padding: 60px 20px;
    background-color: #f0f0f0;
    text-align: center;
  }
  
  .about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .about-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
  }
  
  /* Services Section */
  
  
  .services {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .services-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 20px;
  }

  .scrollButton {
    border: none;
    cursor: pointer;
  }
  
  .service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin: 0 auto;
    width: 30%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .service-item h3 {
    margin-bottom: 15px;
  }
  
  .service-item p {
    color: #555;
  }

  .service-item a {
    text-decoration: none;
    color: black;
  }
  
  .carousel-section {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #f0f0f0;
  }
  
  .carousel-container {
    position: relative;
    overflow: hidden;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .carousel {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .carousel-item {
    min-width: 100%;
    text-align: center;
  }
  
  .carousel-item img {
    max-width: 500px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .carousel-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
  
  .carousel-item p {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #333;
  }
  
  .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: background 0.3s ease;
  }
  
  .carousel-button:hover {
    background: rgba(0, 0, 0, 0.8);
  }
  
  .carousel-button.prev {
    left: 10px;
  }
  
  .carousel-button.next {
    right: 10px;
  }
  
  
  /* Review Section */
  .review-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .review-section h1 {
    text-align: center;
    color: #333;
  }
  
  #review-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  #review-form input,
  #review-form textarea,
  #review-form button {
    font-size: 1rem;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  #review-form button {
    background: #007bff;
    color: white;
    cursor: pointer;
  }
  
  #review-form button:hover {
    background: #0056b3;
  }
  
  /* Star Rating System */
  .star-rating {
    display: flex;
    gap: 5px;
    font-size: 2rem;
    color: #ccc; /* Standardfarbe für Sterne */
    cursor: pointer;
  }
  
  .star-rating span {
    transition: color 0.3s ease;
  }
  
  .star-rating span.hovered {
    color: #ffd700; /* Goldene Farbe beim Hover */
  }
  
  .star-rating span.selected {
    color: #ffa500; /* Orange-goldene Farbe bei Auswahl */
  }
  
  /* Reviews Container */
  .reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .review-card {
    padding: 20px;
    background: #f0f0f0;
    border-radius: 10px;
    border: 1px solid #ddd;
  }
  
  .review-card .star-rating {
    color: #ffa500;
    font-size: 1.2rem;
  }
  
  .review-card .review-text {
    margin: 10px 0;
    color: #555;
  }
  
  .review-card .review-author {
    font-style: italic;
    color: #777;
  }
  
  
  
  
  /* Footer */
  footer {
    padding: 20px;
    text-align: center;
    background-color: #333;
    color: #fff;
    font-size: 0.9rem;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /*service.html
  
  /* Service-Bereich */
  .service-page {
    margin-top: 120px;
    padding: 50px 20px;
    color: white; /* Einheitliche weiße Schrift für Kontrast */
  }
  
  /* Header-Bereich */
  .service-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .service-header h1 {
    font-size: 3rem; /* Größer für mehr Eindruck */
    margin-bottom: 20px;
    color: #f5f5f5;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Leichter Schatten für bessere Lesbarkeit */
  }
  
  .service-header p {
    font-size: 1.2rem;
    color: #e0e0e0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  /* Service-Beschreibung */
  .service-overview {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  
  .service-item {
    background-color: rgba(255, 255, 255, 0.9); /* Halbtransparenter Hintergrund */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .service-item h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .service-item p {
    font-size: 1rem;
    color: #555;
  }
  
  /* Anfrage-Modul */
  .service-request {
    background-color: rgba(255, 255, 255, 0.95); /* Fast weiß, leicht transparent */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .service-request h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 25px;
    color: #333;
  }
  
  .service-request p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-align: center;
    color: #666;
  }
  
  .service-request form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .service-request label {
    font-weight: bold;
    color: #444;
  }
  
  .service-request input,
  .service-request select,
  .service-request textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-request textarea {
    min-height: 120px;
    max-width: 230px;
  }
  
  .service-request input:focus,
  .service-request select:focus,
  .service-request textarea:focus {
    border-color: #0066ff;
    box-shadow: 0 0 5px rgba(0, 102, 255, 0.5);
    outline: none;
  }
  
  .request-button {
    background-color: #0066ff;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .request-button:hover {
    background-color: #0057d9;
    transform: scale(1.05);
  }
  
  .request-button:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
  }
  
  /* konfiguration.html */
  
  .expandable {
    display: flex;
    align-items: flex-start; /* Richtet Inhalte oben aus */
    justify-content: flex-start; /* Checkboxen und Button links platzieren */
    gap: 10px; /* Abstand zwischen Button und Checkboxen */
    width: 80%; /* Verhindert zu starkes Zentrieren */
    margin-left: 250px; /* Bewegt den Bereich nach links */
  }
  
  
  
  .filter-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-left: -150px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  .filter-button:hover {
    background-color: #ececec;
    transform: scale(1.02);
  }
  
  /* Icon Styling */
  .filter-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease-in-out;
  }
  
  .expandable.open .filter-button svg {
    transform: rotate(180deg);
  }
  
  
  .checkbox-container {
    max-height: 0;
    overflow: hidden;
    flex-wrap: wrap;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
  }
  
  .expandable.open .checkbox-container {
    max-height: 300px; /* Adjust based on content */
    width: 300px;
    padding: 8px 0;
  }
  
  .checkbox-container input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: #f9f9f9;
    border: 2px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  }
  
  .checkbox-container input[type="checkbox"]:hover {
    background-color: #e6f7ff;
    border-color: #3a5462;
    box-shadow: 0 4px 12px rgba(58, 84, 98, 0.2);
  }
  
  .checkbox-container input[type="checkbox"]:checked {
    background-color: #3a5462;
    border-color: #3a5462;
    box-shadow: 0 4px 12px rgba(58, 84, 98, 0.3);
    position: relative;
  }
  
  .checkbox-container input[type="checkbox"]:checked::before {
    content: "✔";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
  }
  
  .checkbox-container label {
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
  }
  
  .infopopup {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    z-index: 100;
    font-size: 14px;
    width: 200px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .info-icon {
    display: inline-block;
    margin-left: 8px;
    color: #007bff;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    position: relative;
  }
  
  .info-icon:hover {
    color: #0056b3;
  }
  
  /* Popup beim Aktivieren sichtbar machen */
  .infopopup.active {
    display: block;
  }
  
  .checkbox-container label:hover {
    color: #3a5462;
  }
  
  
  .gallery-container {
    display: flex; /* Aktiviert Flexbox */
    flex-wrap: wrap; /* Bilder umbrechen, wenn der Platz nicht reicht */
    gap: 15px; /* Abstand zwischen den Bildern */
    justify-content: flex-start; /* Bilder linksbündig anordnen */
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .gallery-item {
    flex: 0 1 calc(50% - 15px); /* 4 Items pro Zeile */
    max-width: calc(50% - 15px);
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 5px;
    cursor: zoom-in;
  }
  
  .gallery-item:hover {
    transform: scale(1.05);
  }
  
  .gallery-item.hidden {
    display: none;
  }
  
  /* Modal */
  .modal {
    display: none; /* Unsichtbar bis aktiviert */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
  }
  
  .modal-content img {
    max-width: 100%;
    max-height: 60vh;
    margin-bottom: 15px;
    border-radius: 5px;
  }
  
  .modal-content h2 {
    margin: 10px 0;
    font-size: 1.5em;
  }
  
  .modal-content p {
    font-size: 1em;
    color: #333;
  }
  
  /* Schließen-Button */
  .modal .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s;
  }
  
  .modal .close:hover {
    color: #000;
  }
  
  .select-button {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 8px 30px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  .select-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
  }
  
  .select-button.active {
    background-color: #003f88;
    transform: scale(0.95);
  }
  
  .caseURL {
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 12px 16px;
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }
  
  .labelURL {
    font-size: 16px;
    color: #555;
    margin-top: 20px;
    margin-bottom: 15px;
    display: block;
    text-align: center;
  }
  
  .backgroundImage2 {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-image: url("images/chillSetup.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px);
    z-index: -1;
  }
  .configSection h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    align-items: center;
  }
  
  .configSection h1 {
    color: #333;
    margin-bottom: 10px;
    border-bottom: 3px solid #ccc;
    padding-bottom: 5px;
    align-items: center;
  }
  
  .configSection {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
    background-color: #ffffff;
  }
  .buttonContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 10px 20px;
  }
  .buttons {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background-color: rgba(217, 217, 217, 0.9);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 200px;
  }
  
  /* Hover-Effekt */
  .buttons:hover {
    background-color: #3a5462;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  /* Klick-Effekt */
  .buttons:active {
    background-color: #2e3e49;
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Fokuseffekt (für Tastatur-Navigation) */
  .buttons:focus {
    outline: 2px solid #3a5462;
    outline-offset: 4px;
  }
  
  .slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  
  /* Styling für den Budget-Slider */
  #budgetSlider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    max-width: 400px;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    transition: background 0.3s ease;
  }
  
  /* Slider-Farbe und Effekte beim Ziehen */
  #budgetSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background-color: #3a5462;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  #budgetSlider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background-color: #3a5462;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  /* Hover- und aktive Effekte für den Slider */
  #budgetSlider:hover::-webkit-slider-thumb {
    background-color: #e0e0e0;
    transform: scale(1.1);
  }
  
  #budgetSlider:hover::-moz-range-thumb {
    background-color: #e0e0e0;
    transform: scale(1.1);
  }
  
  #budgetSlider:active::-webkit-slider-thumb {
    background-color: #5c7683;
  }
  
  #budgetSlider:active::-moz-range-thumb {
    background-color: #5c7683;
  }
  
  
  /* Styling für das Number-Input-Feld */
  #budgetInput {
    width: 100%;
    max-width: 100px;
    padding: 10px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  /* Hover- und Fokus-Effekte für das Number-Input-Feld */
  #budgetInput:hover {
    border-color: #b3b3b3;
  }
  
  #budgetInput:focus {
    outline: none;
    border-color: #3a5462;
    box-shadow: 0 4px 12px rgba(58, 84, 98, 0.2);
  }
  
  /* Entfernt die Standard-Pfeile im Number-Input-Feld für Webkit-Browser */
  #budgetInput::-webkit-inner-spin-button,
  #budgetInput::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  .valueDisplay {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    background-color: #f9f9f9; /* Dezenter Hintergrund */
    border: 1px solid #ddd; /* Leichte Umrandung */
    border-radius: 8px; /* Abgerundete Ecken */
    padding: 10px 20px; /* Innenabstand für mehr Platz */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Leichter Schatten für Tiefe */
    transition: background-color 0.3s, box-shadow 0.3s; /* Übergang für Interaktivität */
    width: 150px;
    margin: 10px auto; /* Zentriert auf der Seite */
  }
  
  /* Optional: Hover-Effekt für ein besseres Nutzererlebnis */
  .valueDisplay:hover {
    background-color: #fff; /* Hellerer Hintergrund beim Hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Etwas stärkerer Schatten */
  }

  .questionsContainer {
    font-family: Arial, sans-serif;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    margin-top: 190px;
    margin-bottom: 80px;
    padding: 20px;
    color: black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #f9f9f9;
    border-radius: 8px;
    z-index: 1;
    box-sizing: border-box; /* <- verhindert, dass Padding die Breite sprengt */
    overflow-x: hidden; /* <- falls Unterelemente breiter wären */
  }
  .questionsContainer:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
  }
  .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
  }
  .checkbox-group label {
    display: flex;
    align-items: center;
  }
  .dd1 {
    width: 100%;
    max-width: 400px; /* Breite begrenzen */
    padding: 12px 16px;
    font-size: 16px;
    text-align: center;
    color: #333;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    
    /* Entfernt den Standard-Pfeil */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2210%22 height%3D%225%22 viewBox%3D%220 0 10 5%22%3E%3Cpath fill%3D%22%23333333%22 d%3D%22M0 0l5 5 5-5z%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px; /* Platz für den Pfeil */
  }
  .dd1:hover {
    border-color: #b3b3b3;
  }
  .dd1:focus {
    outline: none;
    border-color: #3a5462;
    box-shadow: 0 4px 12px rgba(58, 84, 98, 0.2);
  }
  
  .mailInput {
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 12px 16px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }
  
  /* Hover- und Fokus-Effekte für Eingabefelder */
  .mailInput:hover {
    border-color: #b3b3b3;
  }
  .mailInput:focus {
    outline: none;
    border-color: #3a5462;
    box-shadow: 0 4px 12px rgba(58, 84, 98, 0.2);
  }
  
  .nameContainer {
    display: flex;
    justify-content: space-between; /* Sorgt dafür, dass die Inputs Platz zueinander haben */
    gap: 10px; /* Abstand zwischen den Inputs */
    width: 100%; /* Optional, falls der Container die gesamte Breite einnehmen soll */
    margin-top: 15px;
  }
  
  .name {
    display: inline-block;
    width: 48%;
    padding: 12px 16px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }
  
  .name:hover {
    border-color: #b3b3b3;
  }
  .name:focus {
    outline: none;
    border-color: #3a5462;
    box-shadow: 0 4px 12px rgba(58, 84, 98, 0.2);
  }
  
  .label1 {
    font-size: 16px;
    color: #555;
    margin: 5px 0;
    display: block;
  }
  .label2 {
    font-size: 16px;
    color: #555;
    margin: 5px 0;
    margin-bottom: 20px;
    display: block;
  }
  .textArea {
    width: 100%;
    max-width: 400px;
    margin: 10px 10px;
    padding: 12px 16px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    min-height: 50px;
    resize: vertical; /* Ermöglicht nur vertikales Resizing */
  }
  
  /* Hover- und Fokus-Effekte für Textbereiche */
  .textArea:hover {
    border-color: #b3b3b3;
  }
  .textArea:focus {
    outline: none;
    border-color: #3a5462;
    box-shadow: 0 4px 12px rgba(58, 84, 98, 0.2);
  }
  #confirmButton:enabled {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background-color: rgba(217, 217, 217, 0.9);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    margin-top: 25px;
  }
  #confirmButton:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    box-shadow: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    max-width: 200px;
    margin-top: 25px;
    transition: all 0.3s ease;
    border: none;
    border-radius: 8px;
  }
  #confirmButton:hover {
    background-color: #3a5462;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  #confirmButton:active {
    background-color: #2e3e49;
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  #confirmButton:focus {
    outline: 2px solid #3a5462;
    outline-offset: 4px;
  }
  
  .confirmButtonContainer {
    display: flex;
    justify-content: center;
  }
  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
   /* Transparenter Hintergrund */
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    z-index: 1000;
  }
  .popup-content {
    background: linear-gradient( 135deg, rgba(255, 255, 255, 1), rgba(230, 230, 230, 0.9) );
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    position: relative;
    color: black;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  .popup-content p {
    color: black;
  }
  .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
  }
  button#closeButton {
    margin-top: 10px;
    margin: 0 auto;
    padding: 8px 12px;
    text-align: center;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
  }
  button#closeButton:hover {
    background-color: #0056b3;
  }
  button#closeButton:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
  }
  .checkmark {
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #26a65b;
    position: relative;
    margin: 20px auto;
  }
  .checkmark::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 10px;
    border: solid white;
    border-width: 0 0 5px 5px;
    transform: rotate(-45deg);
    top: 10px;
    left: 10px;
  }
  .show-checkmark {
    display: block;
    animation: checkmarkAnimation 0.5s ease-in-out forwards;
  }
  @keyframes checkmarkAnimations {
    0% {
        transform: scale(0.5);
        opacity: 0;
   }
    100% {
        transform: scale(1);
        opacity: 1;
   }
  }
  .confirmSentence {
    font-size: larger;
    font-weight: bold;
    color: white;
  }
  /*service.html*/
  .backgroundImage3 {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-image: url("images/chillSetup.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(6px) brightness(0.9); /* Weicher, dunkler Filter für bessere Lesbarkeit */
    z-index: -1;
  }
  .contactPopup {
    display: none; /* Standardmäßig ausgeblendet */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dunkler, transparenter Hintergrund */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Popup über alles legen */
  }
  
  .contactPopup-content {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 15px;
    width: 400px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .contactPopup-content h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .contact-item {
    font-size: 1rem;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 10px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .contact-item strong {
    font-weight: 600;
    color: #444;
  }
  
  .copy-button {
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .copy-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }
  
  .copy-button:hover .copy-icon {
    transform: scale(1.2);
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
  }
  
  .close:hover {
    color: #333;
  }
  
  /* Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .trackBody {
    background-color: white;
  }
  .trackBody button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 15px;
  }
  
  /* Container für die Konfiguration */
  .configuration-card {
    max-width: 600px;
    margin: auto;
    margin-top: 175px;
    margin-bottom: 75px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
  }
  
  .config-title {
    font-size: 24px;
    color: #444;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
  }
  
  /* Stil für die Abschnitte */
  .config-section {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
    background-color: #ffffff;
  }
  
  /* Überschriften für die Abschnitte */
  .config-section h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
  }
  
  /* Stil für die Detailangaben */
  .config-section p {
    font-size: 16px;
    color: #555;
    margin: 5px 0;
  }

  .workingmoney {
    text-align: center;
  }
  
  /* Starke Hervorhebung der Labels */
  .config-section p strong {
    color: #333;
    font-weight: 600;
  }
  
  /* Stil für Status-Elemente */
  .config-section p.status {
    color: #0066cc;
    font-weight: bold;
    margin-top: 15px;
    text-align: center;
  }
  
  .configuration-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
  }
  
  .backgroundImage4 {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-image: url("images/chillSetup.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px);
    z-index: -1;
  }
  
  
  .information {
    max-width: 600px;
    margin: 20px auto;
    padding: 15px 20px;
    border: 2px solid #3a5462;
    border-radius: 8px;
    background-color: #f9fafa;
    box-shadow: 0 4px 8px rgba(58, 84, 98, 0.2);
  }
  
  /* Text-Styling */
  .info-text {
    font-size: 16px;
    line-height: 1.6;
    color: #3a5462;
    text-align: center;
  }
  
  .info-text strong {
    color: #567d91;
    font-weight: bold;
  }
  
  /* Container für Checkboxen */
  .buyingCheckbox {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Abstand zwischen den Checkboxen */
  }
  
  /* Styling für die Checkboxen */
  .buyingCheckbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    border: 2px solid #3a5462; /* Randfarbe */
    border-radius: 4px; /* Leichte Rundung */
    appearance: none; /* Entfernt Standardbrowser-Styling */
    position: relative;
    outline: none;
    transition: all 0.3s ease;
  }
  
  /* Checkbox-Styling bei Hover */
  .buyingCheckbox input[type="checkbox"]:hover {
    border-color: #567d91; /* Helle Randfarbe beim Hover */
    box-shadow: 0 0 4px rgba(86, 125, 145, 0.8); /* Leichtes Glühen */
  }
  
  /* Checkbox, wenn sie aktiviert ist */
  .buyingCheckbox input[type="checkbox"]:checked {
    background-color: #3a5462; /* Hintergrundfarbe für aktive Checkbox */
    border-color: #3a5462; /* Randfarbe für aktive Checkbox */
    box-shadow: 0 4px 12px rgba(58, 84, 98, 0.3); /* Schatteneffekt */
    position: relative;
  }
  
  /* Symbol für aktivierte Checkbox */
  .buyingCheckbox input[type="checkbox"]:checked::before {
    content: "✔"; /* Haken-Symbol */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff; /* Hakenfarbe */
    font-size: 14px;
    font-weight: bold;
  }
  
  /* Text neben der Checkbox */
  .buyingCheckbox label {
    display: flex;
    align-items: center; /* Text vertikal zentrieren */
    font-size: 14px; /* Schriftgröße */
    color: #3a5462; /* Schriftfarbe */
    line-height: 1.5; /* Zeilenhöhe */
  }
  
  .buyingCheckbox label a {
    color: #567d91; /* Linkfarbe */
    text-decoration: underline;
  }
  
  .buyingCheckbox label a:hover {
    text-decoration: none; /* Entfernt Unterstreichung beim Hover */
    color: #3a5462; /* Dunklere Farbe beim Hover */
  }
  
  .form-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .saveButtonContainer {
    display: flex;
    justify-content: center;
  }
  
  h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #333;
  }
  
  form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #555;
  }
  
  form input, form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  
  form input:focus, form select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
  }
  
  #paypal-button-container {
    display: flex;               /* Aktiviert Flexbox */
    justify-content: center;     /* Zentriert den Inhalt horizontal */
    align-items: center; 
    width: 600px; 
    padding: 25px;
    z-index: 1;
  }
  
  #full-payment-button-container {
    display: flex;               /* Aktiviert Flexbox */
    justify-content: center;     /* Zentriert den Inhalt horizontal */
    align-items: center; 
    width: 600px; 
    padding: 25px;
    z-index: 1;
  }
  
  .buttonWrapper {
    display: flex;               /* Flexbox aktivieren */
    justify-content: center;     /* Horizontal zentrieren */
    align-items: center; 
    margin: 0 auto;
    background-color: white;
    max-width: 600px;
    border-radius: 10px;
    margin-bottom: 30px;
    z-index: 1;
    box-sizing: border-box; /* <- verhindert, dass Padding die Breite sprengt */
    overflow-x: hidden; /* <- falls Unterelemente breiter wären */
  }
  
  
  /* Footer allgemeine Stile */
  .site-footer {
    background: #2c2c2c;
    color: #f1f1f1;
    padding: 30px 20px;
    font-size: 0.9rem;
    text-align: left;
    margin-top: 375px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-bottomize {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  .footer-section p, .footer-section a {
    color: #bbbbbb;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
  }
  
  .footer-section a:hover {
    color: #ffffff;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links li a {
    text-decoration: none;
    color: #bbbbbb;
    transition: color 0.3s ease;
  }
  
  .footer-links li a:hover {
    color: #ffffff;
  }
  
  /* Social Media */
  .social-links a {
    margin-right: 10px;
    display: inline-block;
    width: 30px;
    height: 30px;
  }
  
  .social-links img {
    width: 100%;
    height: auto;
  }
  
  /* Copyright */
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 15px;
    color: #bbbbbb;
  }
  
  .footer-bottom p {
    margin: 0;
  }
  
  
  /*impressum*/
  
  /* Impressum-Seite */
  .impressum-page {
    padding: 50px 20px;
    margin-top: 100px;
  }
  
  /* Header-Bereich */
  .impressum-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .impressum-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .impressum-header p {
    font-size: 1.1rem;
    color: #555;
  }
  
  /* Inhalt */
  .impressum-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
  }
  
  .impressum-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .impressum-content p {
    margin-bottom: 20px;
  }
  
  
  /* Datenschutz-Seite */
  .datenschutz-page {
    padding: 50px 20px;
    margin-top: 100px;
  }
  
  /* Header-Bereich */
  .datenschutz-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .datenschutz-header h1 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
  }
  
  .datenschutz-header p {
    font-size: 1.1rem;
    color: white;
  }
  
  /* Inhalt */
  .datenschutz-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
  }
  
  .datenschutz-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .datenschutz-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
  }
  
  .datenschutz-content ul {
    margin: 10px 0 20px 20px;
    list-style-type: disc;
    color: #555;
  }
  
  .datenschutz-content ul li {
    margin-bottom: 10px;
  }
  
  
  /* AGB-Seite */
  .agb-page {
    padding: 50px 20px;
    margin-top: 100px;
  }
  
  /* Header-Bereich */
  .agb-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .agb-header h1 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
  }
  
  .agb-header p {
    font-size: 1.1rem;
    color: white;
  }
  
  /* Inhalt */
  .agb-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
  }
  
  .agb-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .agb-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
  }

  /*Widerrufsbelehrung*/
.widerruf {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  margin: 200px auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.widerruf h2 {
  font-size: 2rem;
  color: #333;
}

.widerruf p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.widerruf strong {
  font-weight: bold;
} 
  
  /* Credits-Seite */
  .credits-page {
    padding: 50px 20px;
    margin-top: 100px;
    margin-bottom: 100px;
  }
  
  /* Header-Bereich */
  .credits-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .credits-header h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
  }
  
  .credits-header p {
    font-size: 1.1rem;
    color: white;
  }
  
  /* Credits-Inhalt */
  .credits-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
  }
  
  .credits-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .credits-content ul {
    margin: 10px 0 20px 20px;
    list-style-type: none;
    padding: 0;
  }
  
  .credits-content ul li {
    margin-bottom: 10px;
  }
  
  .credits-content ul li a {
    color: #0066ff;
    text-decoration: none;
    font-weight: bold;
  }
  
  .credits-content ul li a:hover {
    text-decoration: underline;
  }
  
  .credits-content ul li span {
    color: #555;
    font-size: 0.9rem;
  }
  
  
  #popupMessage {
    position: absolute;
    top: 100%; /* Zentriert das Popup vertikal relativ zum Button */
    left: 10%; /* Popup wird rechts vom Button angezeigt */
    transform: translateY(-50%); /* Justiert vertikale Position */
    background: #f8d7da; /* Farbgebung des Popups */
    color: #721c24; /* Schriftfarbe */
    border: 1px solid #f5c6cb; /* Rahmenfarbe */
    padding: 8px 12px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    white-space: nowrap; /* Verhindert Zeilenumbrüche */
    display: none; /* Initial ausgeblendet */
    z-index: 100; /* Stellt sicher, dass es über anderen Elementen liegt */
  }
  
  #confirmButton:disabled:hover + #popupMessage {
    display: block; /* Zeigt das Popup beim Hover auf dem Button */
  }
  
  
  
  
  .saveButton:enabled {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background-color: rgba(217, 217, 217, 0.9);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    margin-top: 25px;
  }
  .saveButton:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    box-shadow: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    max-width: 200px;
    margin-top: 25px;
    transition: all 0.3s ease;
    border: none;
    border-radius: 8px;
  }
  .saveButton:hover {
    background-color: #3a5462;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .saveButton:active {
    background-color: #2e3e49;
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .saveButton:focus {
    outline: 2px solid #3a5462;
    outline-offset: 4px;
  }
  
  .saveButton:deactivated {
    color: gray;
  }
  
  