/* Bootstrap tabs override -- START */
.nav-tabs {
    border-bottom: 0;
    gap: 24px;
}

.nav-tabs .nav-item {
    margin-bottom: 0;
}

.nav-tabs .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 2px;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background: none;
    color: var(--bs-secondary-color);
    font-weight: 500;
    transition: color .15s ease, border-color .15s ease;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    border-color: transparent;
    color: var(--bs-emphasis-color);
    isolation: auto;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: var(--bs-emphasis-color);
    font-weight: 600;
    background: none;
    border: 0;
    border-bottom: 2px solid var(--bs-primary);
}

.nav-tabs .tab-count {
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    padding: 3px 6px;
    border-radius: 20px;
    background: var(--bs-secondary-bg);
    color: var(--bs-secondary-color);
}

.nav-tabs .nav-link.active .tab-count {
    background: var(--bs-primary-bg-subtle);
    color: var(--bs-primary);
}

/* Bootstrap tabs override -- END */

@font-face {
    font-family: "Inter";
    src: url("/fonts/InterVariable.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

html {
    overflow-y: scroll;
    scroll-padding-top: 77px; /* Based on navbar height */
}

body {
    font-family: "Inter", sans-serif;
}

.k-smaller {
    font-size: 0.8rem;
}

.k-card-hover:hover {
    box-shadow: 3px 4px 5px gray;
}

.k-kanban {
    display: flex;
    min-height: 50vh;
}

.k-kanban-column {
    padding: 10px;
    flex: 1;
}

.k-kanban-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
}

.k-kanban-card {
    cursor: grab;
    box-shadow: none;
    transform: rotate(0deg);
    transition: box-shadow 0.2s, transform 0.2s;
    margin-bottom: 0.75rem;
}

.k-kanban-card:hover {
    box-shadow: 2px 3px 4px gray;
    transform: rotate(2deg);
}

.k-kanban-card:active {
    cursor: grabbing;
}

.k-cursor-pointer:hover {
    cursor: pointer;
}

.k-border-dashed {
    border-style: dashed !important;
}

@media (width < 1401px) {
    .k-kanban-column {
        min-width: calc(33.3333vw - 20px);
    }
}

@media (width < 1201px) {
    .k-kanban-column {
        min-width: calc(50vw - 20px);
    }
}

@media (width < 769px) {
    .k-kanban {
        flex-direction: column;
    }

    .k-kanban-column {
        min-width: calc(100vw - 20px);
    }
}
