/*
|--------------------------------------------------------------------------
| File: public/assets/css/utilities.css
|--------------------------------------------------------------------------
*/

.text-muted{
  color: var(--text-secondary);
}

.text-right{
  text-align: right;
}

.mb-md{
  margin-bottom: 16px;
}

.mt-md{
  margin-top: 16px;
}

.d-flex{
  display: flex;
}

.justify-between{
  justify-content: space-between;
}

.align-center{
  align-items: center;
}

.gap-md{
  gap: 16px;
}