2025-09-09 20:00:25 -03:00

34 lines
612 B
CSS

.form-buttons {
display: flex;
gap: 10px; /* Espaço entre os botões */
justify-content: flex-start; /* Alinha os botões à esquerda */
margin-top: 20px;
}
.btn-save {
background-color: #28a745;
color: white;
border: none;
padding: 8px 16px;
border-radius: 6px;
cursor: pointer;
}
.btn-cancel {
background-color: #ccc;
color: black;
border: none;
padding: 8px 16px;
border-radius: 6px;
cursor: pointer;
}
.btn-back {
background-color: #007bff;
color: white;
border: none;
padding: 8px 16px;
border-radius: 6px;
cursor: pointer;
}