/*--------------------------------------------------------------
	eigene Stile
--------------------------------------------------------------*/

.ce-row {
  clear: both;
}

header {
  clear: both;
}

.logo-brand {
    width: 200px !important;
  height: auto !important;
}



/*--------------------------------------------------------------
	Roter Button
--------------------------------------------------------------*/
.red-button {
  background-color: #36756c;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.red-button:hover {
  background-color: darkred;
  color: white;
}


/*--------------------------------------------------------------
	Tabellen
--------------------------------------------------------------*/

tbody tr:hover {
    background: #36756c;
    color: #fff;
}



.frame{
        margin-bottom: 40px !important;
    }



.rootline-box {
        margin-bottom: 0px;
        padding-top: 20px !important;
        padding-left: 30px !important;
    }

/*---- Tabellen responsive ------------------------------------------*/
table {
  display: block;
  overflow: scroll;
}


/*---- Formular Eigenschaften gestalten ------------------------------------------*/
/* Styling für Label und Eingabefelder */
form label {
    display: block;             /* Label über dem Eingabefeld */
    margin-bottom: 0.5em;       /* Abstand zum Eingabefeld */
    font-weight: bold;          /* Optional: Fettdruck für Labels */
}

form input[type="text"],
form input[type="password"],
form input[type="email"],
form input[type="tel"],
form select,
form textarea {
    display: block;
    width: 100%;                /* Volle Breite für Eingabefelder */
    max-width: 400px;           /* Optional: maximale Breite für Lesbarkeit */
    padding: 8px;               /* Innenabstand für bessere Nutzbarkeit */
    margin-bottom: 10px;        /* Abstand nach unten zu anderen Feldern */
    border: 1px solid #ccc;     /* Rahmenfarbe */
    border-radius: 3px;         /* Abgerundete Ecken */
    box-sizing: border-box;     /* Gleichmäßige Abstände */
}

/* Stil für Submit-Button */
form input[type="submit"] {
    background-color: #36756c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 10px;
}

form input[type="submit"]:hover {
    background-color: #9b1009;
}

/* Optional: Fehlernachrichten oder Hinweise */
form .error-message {
    color: #36756c;
    font-size: 0.9em;
    margin-top: -5px;
}






/*---- Container gestalten ------------------------------------------*/
.container-slider, embed, object, video {
width:100%;
height: auto;
}

.c-section {
padding-top: 20px !important;
}


/*--------------------------------------------------------------
	Footer
--------------------------------------------------------------*/
.menufooter a {
    letter-spacing: 2px; 
    color: #fff;
    font-size: 14px;
}

.footer_text {
    letter-spacing: 2px; 
    color: #fff;
    font-size: 14px;
}


.footer {
  padding: 10px 0;
}

.footer .copyright {
  margin: 0;
}

.footer .footer-social-links {
  text-align: right;
}

.footer .footer-social-links a {
  display: inline-block;
  padding: 0 6px;
}





/*---- Bilder responsive ------------------------------------------*/
.image-embed-item, embed, object, video {
width:100%;
max-width: 100%;
height: auto;
}



/* Gallerie bis 992px auf volle Breite */
@media (max-width: 992px) {
    .ce-gallery {
        width: 100%;
    }
}
 
/* Anpassungen von kleinen bis groeßeren Geraeten */
@media (min-width: 640px) and (max-width: 1200px) {
    .ce-gallery .ce-column {
        margin: 0;
        /* Abstand zwischen Bildern */
        padding: 0 5px;
        box-sizing: border-box;
    }
 
 
    /* Kein Abstand beim ersten und letzten Bild */
    .ce-gallery .ce-column:first-child {
        padding-left: 0;
    }
    .ce-gallery .ce-column:last-child {
        margin-right: 0;
    }
 
    /* Fluid Image Tags */
    .ce-gallery img,
    .ce-gallery picture {
        width: 100%;
        height: auto;
    }
 
    /* Spaltenbreiten je nach eingestellten Columns */
    .ce-gallery[data-ce-columns="2"] .ce-column {
        width: 50%;
    }
 
    .ce-gallery[data-ce-columns="3"] .ce-column {
        width: 33%;
    }
 
    .ce-gallery[data-ce-columns="4"] .ce-column {
        width: 25%;
    }
 
    .ce-gallery[data-ce-columns="5"] .ce-column {
        width: 20%;
    }
}
 
/* Anpassungen fuer kleine Geraete */
@media (max-width: 640px) {
 
    /* Ein Bild pro Zeile */
    .ce-gallery .ce-column {
        margin: 0 0 10px;
        width: 100%;
        box-sizing: border-box;
    }
 
    /* Fluid Image Tags */
    .ce-gallery img,
    .ce-gallery picture {
        width: 100%;
        height: auto;
    }
}
