.am-menu {
    margin-bottom: 20px;
}
.am-menu button {
    padding: 10px 20px;
    margin-right: 10px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.am-menu button:hover {
    background-color: #004c99;
}
form.am-form {
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
form.am-form div {
    display: flex;
    flex-direction: column;
}
form.am-form input,
form.am-form textarea,
form.am-form select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
form.am-form textarea {
    resize: vertical;
}
