.container {
    background-color: #e9f2ff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    margin: 10% auto;
    width: 60%;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.feedback-form {
    display: flex;
    flex-direction: column;
    width: 75%;
    gap: 1.2em;
}

/* --- Feedback textarea --- */
#info {
    width: 100%;
    height: 200px;
    resize: none;                 /* brukeren kan ikke dra størrelsen */
    padding: 1em;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: Arial, sans-serif;
    overflow-wrap: break-word;    /* bryt tekst på linje */
    word-wrap: break-word;
    white-space: pre-wrap;
}

/* --- Input-felt (navn og nummer) --- */
.feedback-form input[type="text"],
.feedback-form input[type="tel"] {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* --- Submit-knapp --- */
.submit-btn {
    background-color: navy;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 40%;
    align-self: center;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #000066;
}

label {
    font-weight: bold;
    font-size: 15px;
}
