.page {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    color: #333;
}

.main-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.result {
    margin-top: 20px;
    padding: 10px;
    background-color: #e9ecef;
    border-radius: 4px;
}

.list-section {
    margin-top: 20px;
    padding: 0;
}

.list-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.list-section li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.list-section li:last-child {
    border-bottom: none;
}

.list-section li:hover {
    background-color: #f8f9fa;
}

.list-section span {
    flex: 1;
    font-size: 1.1em;
}

/* botoes de acao */

.actionButton {
    margin-left: 8px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95em;
    transition: background 0.2s;
}

.actionButton.create {
    background-color: #28a745;
    color: #fff;
}

.actionButton.create:hover {
    background-color: #218838;
}

.actionButton.edit {
    background-color: #ffc107;
    color: #333;
}

.actionButton.edit:hover {
    background-color: #e0a800;
}

.actionButton.delete {
    background-color: #dc3545;
}

.actionButton.delete:hover {
    background-color: #b52a37;
}

.actionButton:hover {
    background-color: #0056b3;
}

/* form items */

.form-container {
    margin-top: 32px;
    padding: 32px 24px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-input {
    width: 100%;
    max-width: 400px;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1.1em;
    transition: border 0.2s;
}

.form-input:focus {
    border-color: #007bff;
    outline: none;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    width: 100%;
}