/* Grundlegendes Styling */
:root {
    --primary-color: #17325b;
    --secondary-color: #4f8df7;
    --background-color: #f4f7fc;
    --text-color: #333333;
    --text-light: #666666;
    --border-radius: 12px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.2;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

header {
    background-color: var(--primary-color);
    color: white;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    box-sizing: border-box;
}

header h1 {
    margin: 0;
    font-size: 2rem;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 600;
}

main {
    width: 100%;
    max-width: 900px;
    padding: 30px 20px;
    box-sizing: border-box;
}

section {
    padding: 40px;
}

.centeredSection {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    color: var(--primary-color);
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 8px;
    margin-top: 40px;
    font-size: 1.5rem;
}

h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 24px;
}

p {
    color: var(--text-color);
    /* font-size: 1.05rem; */
    font-weight: 100;
}

ol {
    background: #f8fafc;
    padding: 20px 20px 20px 40px;
    border-left: 4px solid var(--secondary-color);
    margin: 20px 0;
}

ol li {
    margin-bottom: 12px;
    font-weight: 500;
}

ol li::marker {
    color: var(--secondary-color);
    font-weight: bold;
}

input[type=number] {
    max-width: 240px;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: var(--text-color);
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    border-bottom: 2px solid #cbd5e1;
}

input[type=number]:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.HUDcontainer {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    padding: 20px;
}

.info-box {
    background-color: #f0fdf4;
    border-left: 4px solid #34c759;
    padding: 15px 20px;
    margin: 25px 0;
}

.info-box p {
    margin: 0;
    color: #166534;
    font-weight: 500;
}


.accptbutton {
    margin: 14px;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(79, 141, 247, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.accptbutton:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 141, 247, 0.4);
}


@media (max-width: 600px) {
    section {
        padding: 20px;
    }
    header h1 {
        font-size: 1.5rem;
    }
}

label{
    font-weight: bold;
    color: #4f8df7;
    cursor: pointer;
    margin-left: 8px;
    user-select: none;
}

.sus-list {
    padding-left: 20px;
    margin: 30px 0;
}

.sus-list li {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sus-list li p {
    margin: 0;
    font-weight: 500;
    color: #17325b;
}

.radio-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

#feedbackTextArea {
    width: 100%;
    height: 10vh;
    resize: none;
}

label:first-of-type {
    margin-left: 0;
}
.radio-group input[type="radio"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--secondary-color);
}

@media (min-width: 650px) {
    .sus-list li {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .sus-list li p {
        flex: 1;
        padding-right: 20px;
    }
}