/* Grundlayout */
body {
    font-family: Arial, sans-serif;
    background: #E8F4F8; /* sanftes Pastellblau */
    margin: 0;
    padding: 0;
    color: #003344; /* ruhiges Tiefblau */
}

/* Hauptcontainer */
.container {
    max-width: 900px;
    margin: 40px auto;
    background: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

/* Überschriften */
h1, h2 {
    color: #005577; /* warmes Petrol */
    font-weight: 600;
}

/* Abschnittsboxen */
.section, .question {
    margin-bottom: 30px;
    padding: 20px;
    background: #F5FAFC; /* sehr helles Türkis */
    border-left: 6px solid #66BCD4; /* Akzentfarbe */
    border-radius: 8px;
}

/* Fragenlayout */
.question {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

/* Icons */
.icon {
    width: 40px;
    height: 40px;
    opacity: 0.8;
}

/* Text in Fragen */
.question-content {
    flex: 1;
}

label {
    display: block;
    padding: 6px 0;
    cursor: pointer;
    font-size: 1em;
}

/* Inputs */
input[type="radio"], input[type="checkbox"] {
    transform: scale(1.3);
    margin-right: 10px;
}

textarea, input[type="text"], input[type="email"] {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #AAC7D1;
    margin-bottom: 10px;
    font-size: 1em;
}

/* Buttons */
button {
    display: block;
    width: 100%;
    padding: 15px;
    background: #007A99; /* warmes Türkis-Petrol */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background: #005F77; /* dunklerer Hoverton */
}

/* Portraitbild */
.portrait {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 140px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* QR-Code */
.qr {
    display: block;
    margin: 20px auto;
    width: 180px;
}

/* Freitext-Auswertung */
.free-text {
    background: #FFFFFF;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #AAC7D1;
    margin-bottom: 10px;
}

/* Zählwerte */
.count-item {
    padding: 6px 0;
    font-size: 1.05em;
}
.impressum-link {
    text-align: center;
    margin-top: 40px;
    opacity: 0.7;
}

.impressum-link a {
    color: #005577;
    text-decoration: none;
    font-size: 0.9em;
}

.impressum-link a:hover {
    text-decoration: underline;
    opacity: 1;
}



.auswertung-btn {
    background: transparent;
    color: #005577;
    font-size: 0.8em;
    width: auto;
    padding: 5px 10px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    opacity: 0.5;
}

.auswertung-btn:hover {
    opacity: 1;
    background: #E8F4F8;
}
