


.pw-change {
    max-width: 600px;
    width: 100%;
    margin: auto;
}

#uploadForm {
    max-width: 800px;
    width: 100%;
    margin: auto;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}


.document-category {
    flex-grow: 1;
    width: calc(33% - 20px);
    text-decoration: none;
    color: #000;
    margin: 5px;
}

.document-category div {
    display: flex;
    justify-content: space-between;
    border: 1px solid #9e9e9e;
    padding: 5px;
}

.document-category div span:nth-child(2) {
    color: var(--bs-blue);
    font-weight: bold;
}

@media(max-width: 990px){
    .document-category {
        width: calc(50% - 20px);
    }
}

@media(max-width: 500px){
    .document-category {
        width: 100%;
    }
}

.no-style-link {
    text-decoration: none;
    color: black;
}


.single-document {
    width: calc(25% - 12px);
}

@media(max-width: 1300px) {
    .single-document {
        width: calc(33.33% - 11px);
    }
}

@media(max-width: 900px) {
    .single-document {
        width: calc(50% - 11px);
    }
}


@media(max-width: 650px) {
    .single-document {
        width: calc(100%);
    }
}


/* START */

.feature {
    width: calc(50% - 20px);
    align-self: stretch;
    margin: 10px;
    box-sizing: border-box;
}

@media(max-width: 768px){
    .feature {
        width: calc(100%);
    }
}

.feature .card {
    height: 100%;
}

.feature i {
    font-size: 60px;
}


/* COUNTER */

.counter-table {
    max-height: 500px;
    overflow-y: auto;
}

/* COMMENT */

.author {
    font-weight: bold;
}

.new-comment {
    padding: 15px;
    border: 1px solid #9c9c9c;
}

.comments {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 25px;
}

.comment {
    background: #e9e9e9;
    padding: 10px;
}