

.document {
    float: left;
    width: calc(33% - 20px);
    max-width: 240px;
    margin: 0px 10px 20px;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #dce2e9;
}

.document .document-body {
    height: 130px;
    text-align: center;
    border-radius: 3px 3px 0 0;
    background-color: #fdfdfe;
}

.document .document-body i {
    font-size: 45px;
    line-height: 120px;
}

.document .document-body img {
    width: 100%;
    height: 100%;
}

.document .document-footer {
    border-top: 1px solid #ebf1f5;
    height: 46px;;
    padding: 5px 12px;
    border-radius: 0 0 2px 2px;
}

.document .document-footer .document-name {
    display: block;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    line-height: normal;
    overflow-x: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.document .document-footer .document-description {
    display: block;
    margin-top: -1px;
    font-size: 11px;
    font-weight: 600;
    color: #8998a6;
    width: 100%;
    line-height: normal;
    overflow-x: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.document.info .document-footer >*, .document.success .document-footer >*,
.document.danger .document-footer >*, .document.warning .document-footer >*,
.document.dark .document-footer >* {
    color: #fff;
}

.document.info .document-footer {
    background-color: #2da9e9;
}

.document.success .document-footer {
    background-color: #0ec8a2;
}

.document.warning .document-footer {
    background-color: #ff9e2a;
}

.document.danger .document-footer {
    background-color: #f95858;
}

.document.dark .document-footer {
    background-color: #314557;
}


.center-documents {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

a.document {
    text-decoration: none;
    color: inherit; /* übernimmt die Textfarbe vom Elternelement */
}
