.gantt {
    min-height: 126px;
    overflow-x: auto;
    position: relative;
}

.toast-notice {
    align-items: center;
    background: #fff;
    border: 1px solid #198754;
    border-radius: .375rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    display: flex;
    gap: 1rem;
    max-width: 24rem;
    opacity: 0;
    padding: .75rem 1rem;
    pointer-events: none;
    position: fixed;
    right: 1rem;
    top: 1rem;
    transform: translateY(-.5rem);
    transition: opacity .2s ease, transform .2s ease;
    z-index: 1080;
}

.toast-notice.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.toast-notice.is-danger {
    border-color: #dc3545;
}

.gantt-track {
    background-image: linear-gradient(to right, #dee2e6 1px, transparent 1px);
    background-size: 4.1667% 100%;
    cursor: crosshair;
    min-width: 720px;
    padding-top: 1.75rem;
    position: relative;
    touch-action: none;
}

.gantt-labels {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.gantt-labels span {
    color: #6c757d;
    font-size: .75rem;
    padding-left: .35rem;
}

.gantt-row {
    height: 2rem;
    position: relative;
}

.gantt-draft {
    background: rgba(13, 110, 253, .25);
    border: 1px dashed #0d6efd;
    height: 1.5rem;
    pointer-events: none;
    position: absolute;
    top: .25rem;
}

#drag-project-dialog::backdrop {
    background: rgba(33, 37, 41, .45);
}

.gantt-bar {
    background: #0d6efd;
    border-radius: .25rem;
    color: #fff;
    font-size: .75rem;
    height: 1.5rem;
    overflow: hidden;
    padding: .25rem .4rem;
    position: absolute;
    text-overflow: ellipsis;
    top: .25rem;
    white-space: nowrap;
}

.gantt-bar-label {
    display: block;
    overflow: hidden;
    padding: .25rem .4rem;
    text-overflow: ellipsis;
}

.gantt-handle {
    bottom: 0;
    cursor: ew-resize;
    position: absolute;
    top: 0;
    width: .5rem;
    z-index: 1;
}

.gantt-handle-start {
    left: 0;
}

.gantt-handle-end {
    right: 0;
}

.entries-table td,
.entries-table th {
    white-space: nowrap;
}

.entries-table .project-column {
    min-width: 18rem;
    width: 18rem;
}

.project-picker {
    min-width: 22rem;
}