.custom_downloads_files{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.custom_downloads_files .file_item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    background: #fff;
}
.custom_downloads_files .file_item:hover{
    border-color: #229ac8;
}
.custom_downloads_files .file_item_icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 10px;
    background: #229ac8;
    border-radius: 9px;
    color: #fff;
}