.custom-admin-api-buttons {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  flex-wrap: wrap;
}

.btn-add-expert-role,
.btn-add-spa-role,
.btn-add-cosmet-estet-role {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-add-expert-role {
  background-color: #28a745;
  color: white;
}

.btn-add-expert-role:hover:not(:disabled) {
  background-color: #218838;
  color: white;
}

.btn-add-spa-role {
  background-color: #007bff;
  color: white;
}

.btn-add-cosmet-estet-role {
  background-color: #8c00ff;
  color: white;
}

.btn-add-spa-role:hover:not(:disabled) {
  background-color: #0056b3;
  color: white;
}

.btn-add-cosmet-estet-role:hover:not(:disabled) {
  background-color: #34005e;
  color: white;
}

.btn-add-expert-role:disabled,
.btn-add-spa-role:disabled,
.btn-add-cosmet-estet-role:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-add-expert-role.role-added,
.btn-add-spa-role.role-added,
.btn-add-cosmet-estet-role.role-added {
  background-color: #ffc107;
  color: #212529;
}

.custom-admin-api-message {
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  border-left: 4px solid;
}

.custom-admin-api-message.success {
  background-color: #d4edda;
  border-color: #28a745;
  color: #155724;
}

.custom-admin-api-message.error {
  background-color: #f8d7da;
  border-color: #dc3545;
  color: #721c24;
}