/* Aktivita OTRS Custom Styles
 * Diese CSS-Datei definiert benutzerdefinierte Stile für das Aktivita OTRS-System.
 * Sie enthält Styles für den Header, Footer und verschiedene Komponenten.
 */



@media (min-width: 768px){
	body{
	   border: 0px solid #BCCF00;
	   padding:0px;
    }
}

body.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: black;
    width: 100%;
    max-width: 924px;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Fügt einen leichten Schatten hinzu */
}

.site-content {
    flex: 1 0 auto;
    margin: 0;
    padding: 0;
    background-color: white;
}

/* Header Styles */
#aktivita-custom-header {
    width: 100%;
    position: relative;
    margin-bottom: 0px;
    height: 135px; /* Gesamthöhe des Headers */
}

#aktivita-custom-header-top {
    width: 100%;
    height: 95px;
    background-color: #000000; /* Schwarzer oberer Teil des Headers */
}

#aktivita-custom-header-bottom {
    width: 100%;
    height: 40px;
    background-color: #ffffff; /* Weißer unterer Teil des Headers */
}

/* Logo Link Styles */
#aktivita-custom-logo-link {
    position: absolute;
    left: 20px;
    top: calc(50% + 20px); /* Positionierung des Logos */
    transform: translateY(-50%);
    display: inline-block;
    text-decoration: none;
    border: none;
    outline: none;
    padding: 0;
    font-size: initial;
    height: auto;
    text-align: left;
    line-height: normal;
    background-color: transparent;
    color: inherit;
    cursor: pointer;
    z-index: 1000; /* Stellt sicher, dass das Logo über anderen Elementen liegt */
}

#aktivita-custom-logo {
    height: 87.5px;
    border: none;
    outline: none;
    display: block;
}

/* Footer Styles */
#aktivita-custom-footer {
    background-color: black;
    margin-top: 20px;
    padding-bottom: 20px;
    font-family: 'Roboto-Regular', sans-serif;
    font-size: 15px;
    color: #ffffff;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0; /* Verhindert, dass der Footer schrumpft */
}

/* Footer Logo Layout */
.footer-logos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-logo-block {
    text-align: center;
    margin: 10px;
    width: 30%;
}

.footer-logo {
    width: 30%;
    height: auto;
}

.footer-text {
    margin-top: 10px;
}

.footer-line {
    width: 50px;
    height: 2px;
    margin: 10px auto;
}

/* Footer Links */
.footer-links {
    text-align: center;
    margin-top: 20px;
}

#aktivita-custom-footer a,
#aktivita-custom-footer .footer-link {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
    display: inline-block;
    padding: 5px;
    font-size: inherit;
    height: auto;
    line-height: normal;
    background-color: transparent;
}

#aktivita-custom-footer a:hover,
#aktivita-custom-footer .footer-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-logo {
        width: 40%; /* Vergrößert die Logo-Größe für mittlere Bildschirme */
    }
}

@media (max-width: 767px) {
    .footer-logo-block {
        width: 100%; /* Volle Breite für kleine Bildschirme */
    }
    .footer-logo {
        width: 35%; /* Angepasste Logo-Größe für kleine Bildschirme */
    }
}

.otrs-content {
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    margin-bottom: 30px;
    width: 100vw;
    max-width: 992px;
    box-sizing: border-box;
    background-color: #ffffff !important;
}

.otrs-content input,
.otrs-content select,
.otrs-content textarea {
    max-width: 100%;
    box-sizing: border-box;
}

.full-width {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}



