html{
    font-size: 16px;
}

/* The element BEFORE swap  */
.htmx-swapping {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* The element AFTER swap */
.htmx-added {
    opacity: 0;
    transform: translateY(6px);
}

.htmx-settling .htmx-added {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

:root{
    --app-primary: #01869B;
}

/* Primary button */
.ui.primary.button,
.ui.primary.buttons .button {
  background-color: var(--app-primary) !important;
  color: #fff !important;
}

/* Hover */
.ui.primary.button:hover,
.ui.primary.buttons .button:hover {
  background-color: color-mix(in srgb, var(--app-primary) 85%, black) !important;
}

/* Active / pressed */
.ui.primary.button:active,
.ui.primary.buttons .button:active {
  background-color: color-mix(in srgb, var(--app-primary) 70%, black) !important;
}

/* Focus */
.ui.primary.button:focus {
  background-color: var(--app-primary) !important;
  box-shadow: 0 0 0 1px rgba(0,0,0,.15) !important;
}

.ui.primary.disabled.button,
.ui.primary.button:disabled {
  background-color: var(--app-primary) !important;
  opacity: .45;
}

.ui.primary.basic.button {
  box-shadow: 0 0 0 1px var(--app-primary) inset !important;
  color: var(--app-primary) !important;
}

.ui.primary.basic.button:hover {
  background: rgba(31, 111, 255, .05) !important;
}

.ui.card{
    padding: 1em;
}

.ui.flexitems.end{
    align-items: flex-end;
}

.ui.dropdown > .text, .ui.select.dropdown > .text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.ui.sortable.table th:not([data-col]){
    cursor: default;
}