/* Overlay Hintergrund */
#insolvenz-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 39, 46, 0.5); /* Sehr dunkles Blau/Grau */
    z-index: 9999999;
    display: block;
    align-items: flex-start;
    justify-content: center;
    backdrop-filter: blur(2px); /* Moderner Blur-Effekt */
    padding: 20px 10px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch; /* Sanftes Scrollen auf iOS */
	box-sizing: border-box;
}

/* Die weiße Infobox */
.insolvenz-box {
    background: #ffffff;
    max-width: 600px;
    width: 100%;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    text-align: center;
    font-family: Helvetica, Arial, sans-serif;
	box-sizing: border-box;
	margin: 40px auto;
}

.insolvenz-box h2 {
    color: #c0392b; /* Seriöses Rot */
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 25px;
    border-bottom: 2px solid #f2f2f2;
    padding-bottom: 15px;
}

.insolvenz-text {
    text-align: left;
    color: #2c3e50;
    line-height: 1.5;
    font-size: 16px;
	word-wrap: break-word;
}

/* Hervorgehobene Box für GUK */
.highlight-box {
    background: #f8f9fa;
    border-left: 5px solid #2980b9;
    padding: 20px;
    margin: 25px 0;
	text-align: justify;
}

/* Button Styling */
.btn-guk {
    display: block;
    background-color: #2980b9;
    color: #ffffff !important;
    padding: 15px 10px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 18px;
    transition: background 0.3s ease;
    margin: 20px 0;
	box-sizing: border-box;
}

.btn-guk:hover {
    background-color: #1c5985;
}

/* Rechtlicher Hinweis */
.legal-disclaimer {
    font-size: 11px;
    color: #7f8c8d;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #eee;
	line-height: 1.4;
	text-align: justify;

}
.overlay-impressum {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 11px; /* Sehr kleine Schrift */
    line-height: 1.4;
    text-align: center;
	color: #7f8c8d;

}
/* Language Switch */
.overlay-lang-switch {
    text-align: right;
    margin-bottom: 15px;
    font-size: 13px;
    color: #999;
}

.overlay-lang-switch a {
    color: #0056b3;
    text-decoration: none;
    padding: 0 5px;
}

.overlay-lang-switch strong {
    color: #333;
    padding: 0 5px;
}

/*  scrollen allgemein verhindern */
body {
    overflow: hidden !important;
}



@media (max-width: 480px) {
    .insolvenz-box {
        padding: 20px 15px;
        margin: 10px auto;
    }
    h2 {
        font-size: 20px;
    }
}