/* WPForms fixes */
/* Initial field looks */
.wpforms-container input[type=date],
.wpforms-container input[type=datetime],
.wpforms-container input[type=datetime-local],
.wpforms-container input[type=email],
.wpforms-container input[type=month],
.wpforms-container input[type=number],
.wpforms-container input[type=password],
.wpforms-container input[type=range],
.wpforms-container input[type=search],
.wpforms-container input[type=tel],
.wpforms-container input[type=text],
.wpforms-container input[type=time],
.wpforms-container input[type=url],
.wpforms-container input[type=week],
.wpforms-container select,
.wpforms-container textarea {
    background: #fff;
    border-width: 0 0 1px 0;
    color: var(--ast-global-color-2);
    opacity: 0.5;
}
/* On focus */
.wpforms-container input:focus,
.wpforms-container select:focus,
.wpforms-container textarea:focus {
    outline: none;
    opacity: 1;
    border-color: var(--ast-global-color-0);
}
/* Don't allow resizing the Message box */
.wpforms-container textarea {
    resize: none;
}
/* Message box fixed height */
.wpforms-container .wpforms-field-textarea textarea.wpforms-field-medium {
    height: 136px;
}
/* Button size & font size */
.wpforms-container button {
    padding: 15px 34px;
    font-size: 15px;
}
/* WPForms done */
/* Footer 2 big columns on sides and 1 small one in the middle */
.ast-builder-grid-row-3-equal .ast-builder-grid-row {
    grid-template-columns: 3fr 1fr 3fr;
}

/* SureForms (srfm) Submit-Button angleichen */
.wp-block-button .srfm-submit-button,
.wp-block-button .srfm-btn-frontend {
      border-color: #4A4A4A !important;
    background-color: transparent !important;
  border-radius: 8px !important; 
     border-top-left-radius: 30px !important;
    border-top-right-radius: 30px !important;
    border-bottom-right-radius: 30px !important;
    border-bottom-left-radius: 30px !important;
    border-style: solid;
    text-decoration: none;
    border-top-width: 1px;
    border-right-width: 1px;
    border-left-width: 1px;
    border-bottom-width: 1px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    font-weight: 400;
    font-size: 0.875rem;
  cursor: pointer !important;
  display: inline-block !important;
  text-align: center !important;
}

/* Hover-Zustand */
.wp-block-button .srfm-submit-button:hover,
.wp-block-button .srfm-btn-frontend:hover {
  background-color: #4A4A4A !important;
    color: #FFFFFF !important;    /* Hover-Farbe */
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4A4A4A;
  color: #fff;
  padding: 0.5em 0.8em;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
	display: none;  
  z-index: 999;
}
.back-to-top:hover {
  background-color: #777777;
	color: #fff;
}

/* Aktiven Menüpunkt farblich hervorheben */
.main-navigation .current-menu-item > a,
.elementor-nav-menu .current-menu-item > a {
  font-weight: 600 !important;      /* Fett gedruckt */
	text-decoration: underline !important;
	text-underline-offset: 3px; /* optional: Abstand von der Schrift */
  /* entfernen Sie ggf. alle border-Styles */
}

/* Styling für alle Tabellen auf der Website */
table {
    border-collapse: collapse; /* Rahmen der Zellen zusammenführen */
    width: 100%; /* Tabellenbreite auf 100% setzen */
}



/* Styling für Datenzellen */
td {
    padding: 8px 10px;
    border: 1px solid #ddd;
}

/* Zebra-Stripes (wechselnde Zeilenfarben für bessere Lesbarkeit) */
tr:nth-child(even) {
    background-color: #f8f8f8;
}
}