.pretty-documents-list {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.pretty-document-attachment {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-basis: 200px;
    flex-shrink: 0;
    flex-grow: 1;
    padding: 12px;
    background-color: #f4f4f4;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    min-width: 0;
}

.pretty-document-attachment svg {
    fill: #FF6600;
}

.pretty-document-icon {
    flex-shrink: 0;
    line-height: 0;
}

.pretty-document-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0; /* Fix for long text overflow */
}

.pretty-document-title {
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 500;
}

.pretty-document-size {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 2px;
} 