.wp-block-file:not(.wp-element-button) {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.wp-block-file * + .wp-block-file__button {
    margin-left: 0;
}

a[class*="file-download"] {
    padding: 5px 10px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    text-decoration: none;
}

a[class*="file-download"] img {
    width: 30px;
    margin-right: 5px;
}

a[class*="file-download"][data-format*="ai"],
a[class*="file-download"][data-format*="eps"],
a[class*="file-download"][data-format*="pdf"],
a[class*="file-download"][data-format*="ppt"] {
    background: #fbefef;
}

a[class*="file-download"][data-format*="avi"],
a[class*="file-download"][data-format*="mov"],
a[class*="file-download"][data-format*="mp3"],
a[class*="file-download"][data-format*="mp4"] {
    background: #f9effb;
}

a[class*="file-download"][data-format*="doc"],
a[class*="file-download"][data-format*="docx"],
a[class*="file-download"][data-format*="psd"],
a[class*="file-download"][data-format*="rtf"],
a[class*="file-download"][data-format*="txt"] {
    background: #eff4fb;
}

a[class*="file-download"][data-format*="csv"],
a[class*="file-download"][data-format*="xls"],
a[class*="file-download"][data-format*="xlsx"] {
    background: #f6fbef;
}

a[class*="file-download"][data-format*="gif"],
a[class*="file-download"][data-format*="jpg"],
a[class*="file-download"][data-format*="jpeg"],
a[class*="file-download"][data-format*="png"],
a[class*="file-download"][data-format*="svg"] {
    background: #effbf6;
}

a[class*="file-download"][data-format*="rar"],
a[class*="file-download"][data-format*="zip"] {
    background: #fbf6ef;
}