.boxDocs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.boxDocsItem {
    display: flex;
    align-items: center;
    width: 300px;
    padding: 5px;
    border: 1px solid lightgray;
    border-radius: 5px;
}
.boxDocsItem:hover {
    border: 1px solid gray;
}

.boxDocsItemIconPdf {
    width: 50px;
    height: 50px;
    background-image: url('/css/icon/icon_file_pdf.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.boxDocsItemTitle {
    width: 200px;
    margin-left: 10px;
    font-size: 0.8rem;
}