:root {
  --primary: rgb(107, 21, 213);
  --primary-dark: rgb(0, 0, 80);
  --primary-70: rgba(107, 21, 213, 0.7);
  --primary-50: rgba(107, 21, 213, 0.5);
  --primary-30: rgba(107, 21, 213, 0.3);
  --primary-10: rgba(107, 21, 213, 0.1);
  --logo: #000050;
  --sidebar-icon: #fff;
}

.bg-grad-sidebar {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#000050),
    to(#31117c)
  );

  background-image: linear-gradient(
    0deg,
    #000050,
    #31117c
  );
}

.table tr:hover td {
    background-color: var(--primary-10);
}

/* hide attachment in trix */
trix-toolbar .trix-button-group.trix-button-group--file-tools {
  display: none;
}