body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #000;
    margin: 0;
    padding: 0;
}

.full_container_normal {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.Form_container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    min-width: fit-content;
    max-width: 800px;

    box-sizing: border-box;

    margin-top: 40px;
    margin: 80px;
}

div[question-space]{
    display: block;
    margin-bottom: 20px;
    margin-top: 20px;
}

div[titel]{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}


h2 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    display: flex;
    align-items: center;
}


p[fråga-beskrivning]{
    font-size: small;
    font-style: italic;
    opacity: 0.8;
}

small {
    display: block;
    color: #666;
    margin-bottom: 5px;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

textarea {
    height: 100px;
    resize: vertical;
}

.radio-group, .checkbox-group {
    display: grid;
    grid-template-columns: 25px 1fr;

    margin-top: 10px;
    gap: 5px;
}

.radio-group label, .checkbox-group label{
    align-items: center;
    font-weight: normal;
}

.radio-group input[type="radio"], .checkbox-group input[type="checkbox"] {
    margin: 0;
}


input[type="checkbox"], input[type="radio"] {
    width: 20px;
    height: 20px;
}

button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
    width: 100%;
}

button:hover:not([disabled]) {
    background-color: #555;
}

@media (max-width: 600px) {
    .Form_container {
        padding: 15px;
    }
    input, select, textarea {
        font-size: 14px;
    }
    button {
        font-size: 16px;
    }
}



[fråga-text]{
    margin-top: 20px;
}