/* History Item Internal Layout */
.vm-history-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 4px;
}

.vm-history-date {
    font-size: 0.8rem;
    opacity: 0.7;
    font-weight: 400;
}

.vm-history-body {
    white-space: pre-wrap; /* Preserves line breaks from user input */
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.4;
    display: block;
    width: 100%;
}

/* Theme Adaptation (Golden Flakes) */
body.theme-golden-flakes .vm-history-item-header {
    border-bottom-color: #d4af37;
    color: #000;
}