
.attachments-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.attachment-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e3e3e3;
}

.attachment-thumb {
    width: 96px;
    height: 96px;
    border-radius: 0.5rem;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.attachment-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.attachment-icon {
    font-size: 2rem;
}

.attachment-title {
    margin: 0;
    font-weight: 600;
}

.attachment-download {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
