/**
 * TESTUTILITY.CSS - Maximierte Breite & Layout
 */

body {
    background-color: #f8fbff;
    margin: 0;
    /* Weniger Padding an den Seiten, damit mehr Platz für die Boxen ist */
    padding: 40px 10px; 
    color: #2c3e50;
    font-family: sans-serif;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

header h1 { 
    margin: 0; 
    font-size: 2.2rem;
    font-weight: 700;
}

/* Container & Karten-Struktur */
.test-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* Geändert: max-width auf fast 100% gesetzt */
    max-width: 98vw; 
    margin: 0 auto;
    width: 100%;
}

.test-card {
    background: white;
    border-radius: 20px;
    /* Padding leicht reduziert für mehr Inhaltsfläche */
    padding: 20px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    box-sizing: border-box;
}

.test-card h2 {
    margin-top: 0;
    font-size: 1rem;
    padding-bottom: 15px;
    margin-bottom: 25px;
    color: #3498db;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #f0f0f0;
}

/* --- SNIPPET SPEZIFISCHE GRÖSSEN --- */

.typo-display {
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    font-weight: 800;
}

/* Hilfs-Layouts */
.test-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* Nutzt den verfügbaren Platz optimal aus */
    justify-content: space-evenly; 
    gap: 20px;
    width: 100%;
}