#amr-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#amr-form h2 {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
}

#amr-form label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
    color: #333;
}

#amr-form input[type="text"],
#amr-form input[type="submit"],
#amr-form select,
#amr-form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#amr-form select,
#amr-form textarea {
    font-size: 1em;
}

#amr-form textarea {
    resize: vertical;
    min-height: 80px;
}

#amr-form input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

#amr-form input[type="submit"]:hover {
    background-color: #005c88;
}

#amr-result {
    margin-top: 20px;
    font-size: 1.1em;
    text-align: center;
    color: #333;
}
