/* Grundläggande layout */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 24px;
    color: #444;
    text-align: center;
}

p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

fieldset {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}

legend {
    font-size: 18px;
    color: #444;
    padding: 0 10px;
}

label {
    font-size: 14px;
    color: #555;
    display: block;
    margin-top: 10px;
}

select,
textarea,
input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
}

textarea {
    height: 80px;
}

/*button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
    width: 100%;
    display: block;
}*/

button {
    background-color: #FFD700;
    color: black;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
    width: 100%;
    display: block;
}

button:hover {
    background-color: #FFC107;
}

.button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
}

.button:hover {
    background-color: #45a049;
}

/* Resultatvisning */
#result {
    margin-top: 20px;
}

#adjustment {
    margin-top: 15px;
}

input[type="radio"] {
    margin-right: 5px;
}

label[for="motivation"] {
    margin-top: 10px;
    font-weight: bold;
}

input[type="submit"] {
    background-color: #007BFF;
    margin-top: 15px;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Formatering för listan i rimlighetsfrågan */
ul.reasonable-list {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
    color: #333; /* Anpassa färg till textfärg i designen */
    font-size: 1em; /* Anpassa storlek för att matcha övrig text */
}

ul.reasonable-list li {
    margin-bottom: 8px; /* Ger lite luft mellan punkterna */
}

