.chat-file {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	width: fit-content;
	max-width: 15em;
	padding: 0.5em;
	border-radius: 0.25em;
	gap: 0.25em;
	font-size: 0.75em;
	background: white;
	color: var(--chat--color-dark);
	border: 1px solid var(--chat--color-dark);
	cursor: pointer;
}

.chat-file-name {
	overflow: hidden;
	max-width: 100%;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin: 0;
}

.chat-file-delete,
.chat-file-preview {
	background: none;
	border: none;
	display: inline-flex;
	cursor: pointer;
	flex-shrink: 0;
	padding: 0;
	color: inherit;
}

.chat-file-delete {
	position: relative;

	&:hover {
		color: red;
	}

	&::before {
		content: "";
		position: absolute;
		top: -10px;
		right: -10px;
		bottom: -10px;
		left: -10px;
	}
}
