.dokumentaMain{
    width: 90%;
    display: flex;
    flex-direction: column;
    margin: 5px auto;
    font-weight: 500;
}
.dokument:first-of-type{
    margin-top: 30px;
}
.dokument{
    width: 100%;
    /* max-width: 400px; */
    display: flex;
    flex-direction: column;
    background-color: rgb(230, 230, 230);
    border: 1px solid transparent;
    padding: 20px;
    margin: 8px 0;
    cursor: pointer;
    transition: all ease-in-out 0.2s;
}
.dokument:hover{
    background-color: transparent;
    border: 1px solid black;
}
.dokumentTitle{
    font-size: 1.1rem;
    color: #000;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-decoration: underline;
}
.dokumentDate{
    font-size: 0.875rem;
    opacity: 0.7;
    padding-top: 1px;
}
.dokumentaList {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    gap: 10px;
}
.dokumentaList > div {
    flex: 1;
    max-width: 50%;
    width: 100%;
    align-self: stretch;
}
@media only screen and (max-width: 1024px) {
    .dokumentaList {
        flex-direction: column;
    }
    .dokumentaList > div {
        max-width: 100%;
    }
}
