/* Base style for all pastel primary buttons */
.btn-primary-1,
.btn-primary-2,
.btn-primary-3,
.btn-primary-4,
.btn-primary-5,
.btn-primary-6,
.btn-primary-7,
.btn-primary-8,
.btn-primary-9,
.btn-primary-10,
.btn-save,
.btn-edit,
.btn-destroy,
.btn-add
{
    color: #fff; /* white text */
    border: none;
}

/* Pastel but dark enough for white text */
.btn-save, .btn-primary-1  { background-color: #4FA3A5; } /* Deep teal pastel */
.btn-edit, .btn-primary-2  { background-color: #E48A6F; } /* Warm peach pastel */
.btn-add, .btn-primary-3  { background-color: #9B86B7; } /* Soft purple pastel */
.btn-primary-4  { background-color: #E7A64B; } /* Golden pastel orange */
.btn-primary-5  { background-color: #5FA8D3; } /* Blue pastel */
.btn-destroy, .btn-primary-6  { background-color: #E06C75; } /* Coral pastel red */
.btn-primary-7  { background-color: #6BA96B; } /* Green pastel */
.btn-primary-8  { background-color: #C5A800; } /* Muted mustard pastel */
.btn-primary-9  { background-color: #6B7FD7; } /* Lavender-blue pastel */
.btn-primary-10 { background-color: #B665A4; } /* Pink-magenta pastel */

/* Hover effect - slightly darker */
.btn-save:hover, .btn-primary-1:hover  { background-color: #428c8e; }
.btn-edit:hover, .btn-primary-2:hover  { background-color: #d4775d; }
.btn-add:hover, .btn-primary-3:hover  { background-color: #8974a4; }
.btn-primary-4:hover  { background-color: #d09441; }
.btn-primary-5:hover  { background-color: #4f92b8; }
.btn-destroy:hover, .btn-primary-6:hover  { background-color: #cb5d66; }
.btn-primary-7:hover  { background-color: #5c935c; }
.btn-primary-8:hover  { background-color: #b09600; }
.btn-primary-9:hover  { background-color: #5d6fc1; }
.btn-primary-10:hover { background-color: #a25894; }
