body {
    font-family: sans-serif;
    margin: 2rem;
}

input[type="text"], textarea {
    width: 400px;
    padding: 5px;
    margin-bottom: 10px;
}

button {
    margin-top: 5px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
}

.account-actions {
    padding-top: 12px;
}
.account-actions a {
    margin-right: 10px;
    text-decoration: none;
    background: #007BFF;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
}

.account-actions a:hover {
    background: #006Bbb;
}

.account-actions a.remove {
    background: #dc3545;
}

.account-actions a.remove:hover {
    background: #b02535;
}

.account-actions a.update-templates {
    background: #17a2b8;
}

.account-actions a.update-templates:hover {
    background: #138496;
}

#flashes {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
#flashes li {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}
#flashes li.success {
    background-color: #d4edda;
    color: #155724;
}
#flashes li.error {
    background-color: #f8d7da;
    color: #721c24;
}