/* NOTES */

#task-history {
    position: relative;
    padding: 1rem;
    border: 1px solid var(--form-input-border-color);
    background: var(--form-control-bg);
    max-height: 100%;
    overflow-y: auto;
}

#notes .note-item {
    position: relative;
    display: grid;
    grid-template-columns: 125px 1fr;
    gap: 1rem;
    padding-bottom: 2rem;
}

#notes .note-date strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

#notes .note-date span {
    display: block;
    margin-top: 2px;
    font-size: 0.75rem;
    color: #71717a;
}

#notes .note-card-line {
    position: absolute;
    height: 100%;
    width: 1px;
    background: var(--form-input-border-color);
    left: calc(125px + 0.5rem);
    transform: translateX(-50%);
}

#notes .note-card-line span {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0.5rem;
    height: 0.5rem;
    background: var(--link-color);
    border-radius: 50%;
    z-index: 2;
}

#notes .note-card-content {
    padding-inline: 1rem;
    padding-bottom: 0.5rem;
}
