/* Attachment styles */
.attachment-list {
    margin-top: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    overflow: hidden;
}

.attachment-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s;
}

.attachment-item:last-child {
    border-bottom: none;
}

.attachment-item:hover {
    background-color: #f8f9fa;
}

.attachment-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #6c757d;
}

.attachment-details {
    flex: 1;
}

.attachment-link {
    display: block;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 0.25rem;
}

.attachment-link:hover {
    text-decoration: underline;
}

.attachment-meta {
    display: flex;
    font-size: 0.85rem;
    color: #6c757d;
}

.attachment-size, .attachment-date {
    margin-right: 1rem;
}

.attachment-private {
    color: #dc3545;
    font-weight: 500;
}