.item-note-field {
    margin-top: 15px;
    margin-bottom: 15px;
}

.item-note-field .label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.item-note-textarea {
    width: 100%;
    min-height: 60px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
}

.item-note-container {
    /* margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    background: #f5f5f5; */
    border-radius: 3px;
}

.item-note-label {
    margin-bottom: 5px;
}

.item-note-content {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.item-note-content .item-note-textarea {
    flex: 1;
    min-height: 50px;
}

.item-note-content .update-note {
    padding: 8px 15px;
    background: #1979c3;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}

.item-note-content .update-note:hover {
    background: #006bb4;
}

.item-note-content .update-note:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.item-note-display {
    margin-top: 5px;
    padding: 5px;
    font-style: italic;
    color: #666;
    font-size: 13px;
}


