.dm-document-table a:hover {
    color: #2f8dab;
}

.dm-document-table .name {
    margin: 0;
    display: flex;
    align-items: center;
}

.dm-document-table .name .icon {
    width: 40px;
    height: 40px;
    color: #2f8dab;
    background-color: #e4eff0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-left: 15px;
}

@media only screen and (min-width: 769px) {

    /* Table Default Styles */
    .dm-document-table {
        width: 100%;
        border-collapse: separate;
        /* Default value */
        border-spacing: 0px 10px;
        /* Horizontal and vertical spacing */
    }

    .dm-document-table th,
    .dm-document-table td {
        vertical-align: middle;
        background: none;
        border: none;
        padding: 15px 10px;
        /* Optional padding for better spacing */
        text-align: center;
    }

    .dm-document-table th:first-child,
    .dm-document-table td:first-child {
        text-align: right;
    }

    .dm-document-table td {
        background: #f7f7f7;
    }

    .dm-document-table td:last-child {
        border-radius: 5px 0 0 5px;
    }

    .dm-document-table td:first-child {
        border-radius: 0 5px 5px 0;
    }
}

@media only screen and (max-width: 768px) {
    table.dm-document-table {
        border-spacing: 0px;
    }

    table.dm-document-table,
    table.dm-document-table thead,
    table.dm-document-table tbody,
    table.dm-document-table tr {
        display: block;
    }

    table.dm-document-table tr {
        background-color: #f7f7f7;
        margin-bottom: 24px;
        padding: 10px;
        display: flex;
        flex-wrap: wrap;
    }

    table.dm-document-table th,
    table.dm-document-table td {
        display: block;
        border: none;
        width: 100%;
        padding: 8px;
    }

    table.dm-document-table td:before {
        content: attr(data-title);
        display: block;
        width: 100%;
        padding: 5px 8px;
        margin-bottom: 8px;
    }

    table.dm-document-table thead {
        display: none;
    }

    table.dm-document-table td:nth-child(2),
    table.dm-document-table td:nth-child(3),
    table.dm-document-table td:nth-child(4) {
        text-align: center;
        width: 33.33%;
    }

    table.dm-document-table td:nth-child(1) {
        margin-bottom: 5px;
    }

    table.dm-document-table td:nth-child(2) {
        border: 1px solid green;
        border-left: none;
    }
    table.dm-document-table td:nth-child(3) {
        border: 1px solid green;
        border-right: none;
        border-left: none;
    }
    table.dm-document-table td:nth-child(4) {
        border: 1px solid green;
        border-right: none;
    }
    table.dm-document-table td:nth-child(5) {
        border: 1px solid green;
        margin-top: 10px;
    }

    .dm-document-table a {
        display: inline-block;
        line-height: 0em;
    }

}