/**
 * TEMPORARY CSS - Username Feature
 * This file is temporary and should be removed when the username feature is removed
 * 
 * To remove:
 * 1. Delete this file
 * 2. Remove the <link> tag from index.html that references this file
 */

/* Diagram browser - 2x2 grid layout */
.diagram-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.diagram-item-user {
    font-size: 13px;
    color: #2c3e50;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    text-align: right;
}

.diagram-item-date {
    font-size: 12px;
    color: #7f8c8d;
    text-align: right;
}

