/* 1. GRUND-LAYOUT (Gilt für alle Geräte) */
.spalten-layout {
    display: flex;
    align-items: stretch;
    gap: 1px;
    max-width: 1450px;
    margin: 20px auto;
	height: 800px;
	
}

/* Gemeinsame Regeln für alle Spalten */
.spalte, .links, .mitte, .rechts {
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden; /* Wichtig für die Rundung! */
	font-size: 14px;
}

/* 2. DIE SEITENSPALTEN (PC) */
.links, .rechts {
    flex: 1;
    min-width: 400px;
    background-image: url('bg_contenair_mitte.png');
    background-size: cover;
    background-position: center;
    color: black;
    text-shadow: 0px 0px 0px #000;
    border-radius: 20px;
    border: 3px solid #ccc;
	 max-width: 400px;
}

/* 3. DIE MITTE (PC) */
.mitte {
    flex: 2;
    background-image: url('bg_contenair_mitte.png');
    background-size: cover;
    background-position: center;
    color: black;
    text-shadow: 0px 0px 0px #000;
    border-radius: 20px; /* Hier ist die Rundung für PC */
    border: 3px solid #BDBBBB;
	 max-width: 800px;
}

/* 4. DER HANDY-EFFEKT (Nur für kleine Bildschirme) */
@media (max-width: 800px) {
    
    /* Seitenspalten komplett weg */
    .links, .rechts {
        display: none;
    }

    /* Container untereinander stapeln */
    .spalten-layout {
        display: block;
        padding: 10px;
    }

    /* Mitte auf volle Breite und Handy-Rundung */
    .mitte {
        width: 100% !important;
		height: 100%;
        margin: 0;
        border-radius: 10px; /* Kleinere Rundung für Handy */
        font-size: 16px;
    }
}
,body{
background-color:#7D8CB3;
}