.file-btn-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.file-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 16px;

    background: #f7f7f7;
    border: 1px solid #d8d8d8;
    border-radius: 4px;

    color: #333 !important;
    text-decoration: none !important;
    font-weight: 700;
    line-height: 1;

    transition: all 0.2s ease;
}

.file-btn:hover,
.file-btn:focus {
    background: #eeeeee;
    border-color: #bdbdbd;
}

.file-btn::before {
    content: "";
    width: 24px;
    height: 24px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    flex-shrink: 0;
}

.file-btn.pdf::before {
    background-image: url("/support/assets/icon_pdf.png");
}

.file-btn.word::before {
    background-image: url("/support/assets/icon_word.png");
}