/* Attachment card styles */
.attachment-card {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1rem;
	background: white;
	border: 2px solid;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	min-width: 200px;
	max-width: 250px;
	cursor: pointer;
}

.attachment-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Attachment card header */
.attachment-card-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.attachment-card-icon {
	font-size: 2rem;
	line-height: 1;
}

.attachment-card-info {
	flex: 1;
	overflow: hidden;
}

.attachment-card-type {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.attachment-card-title {
	font-size: 0.875rem;
	color: #333;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Attachment card footer */
.attachment-card-footer {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.75rem;
	color: #666;
	padding-top: 0.25rem;
	border-top: 1px solid #e0e0e0;
}

.attachment-card-footer-icon {
	width: 1rem;
	height: 1rem;
	fill: currentColor;
}

.attachment-card-footer-text {
	font-style: italic;
}
