/* Action badges */
.action-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    margin-left: 8px;
    text-transform: uppercase;
    vertical-align: middle;
}

.action-badge.create {
    background: #e3f2fd;
    color: #1976d2;
}

.action-badge.edit {
    background: #fff3e0;
    color: #f57c00;
}

.action-badge.add {
    background: #e8f5e9;
    color: #388e3c;
}

/* Edit details styling - HORIZONTAL LAYOUT */
.edit-details {
    margin-top: 8px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #f57c00;
}

.edited-by {
    font-size: 11px;
    color: #666;
    margin-bottom: 6px;
    font-style: italic;
}

.change-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-items: center;
}

.change-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    background: white;
    padding: 3px 10px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.change-label {
    font-weight: 600;
    color: #495057;
    text-transform: capitalize;
}

.change-label:after {
    content: ":";
    margin-right: 4px;
}

.new-value {
    color: #28a745;
    font-weight: 500;
}

/* Timeline details for non-edit items */
.timeline-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.detail-item {
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.detail-item strong {
    color: #333;
    margin-right: 4px;
}