body {
    overflow-y: hidden;
    padding-bottom: 0;
}
.header {
    display: flex;
    column-gap: 10px;
    padding: 56px 16px 0 16px;
}
.header .header-information {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}
.header .header-information h4 {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
}
.header .header-information p {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    max-width: 177px;
}
.card {
    height: 100vh;
    border-radius: 28px 28px 0 0;
    padding: 35px 1rem 0 1rem;
}
.card .header {
    display: flex;
    padding: 0;
    margin-bottom: 18px;
}
.card .header h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 0;
}
.card .document-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 14px;
    max-height: calc(100vh - 325px);
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 8px;
}
.card .document-container .list-item {
    display: flex;
    align-items: center;
    width: 100%;
    height: 58px;
    box-shadow: 0px 4px 10px 0px rgba(195, 195, 195, 0.25);
    background-color: #fff;
    border-radius: 8px;
    text-decoration: none;
    column-gap: 18px;
}
.card .document-container .list-item .list-label {
    display: flex;
    flex-direction: column;
    row-gap: 1px;
}
.card .document-container .list-item .list-label .list-title {
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    color: #333;
}
.card .document-container .list-item .list-label .list-subtitle span {
    font-weight: 400;
    font-style: italic;
    font-size: 13px;
    line-height: 18px;
    color: rgba(60, 60, 67, 0.6);
}
.card .document-container .list-item .action-image {
    margin-left: auto;
}
