.document-lists {
    margin: 30px;
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+/Edge */
    user-select: none;
    /* Standard */
}

.document-lists-title {
    margin-top: 20px;
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    color: var(--red-orange-color);
    /* display: flex;
    align-items: center; */
}

/* 
.document-lists-title::before,
.document-lists-title::after {
    flex: 1;
    content: '';
    padding: 1px;
    background-color: var(--red-orange-color);
    margin: 5px;
} */

.document-list {
    background-image: url("https://backend.deshcapitalllc.com/Images/LogoTrans.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.document-list-title {
    margin-top: 20px;
    font-size: 30px;
    text-decoration: underline;
    font-weight: 900;
    text-align: center;
    color: var(--lust-color);
}

.mail-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    flex-direction: column;
}

.mail {
    text-decoration: none;
    color: var(--blue-color);
    font-weight: 700;
}

.box {
    border: 3px solid var(--black-color);
    margin-top: 20px;
}

.box-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--black-color);
    padding: 5px;
}

.color {
    color: var(--lust-color);
}

.document-list-header {
    margin-top: 20px;
    font-size: 20px;
    text-decoration: underline;
    font-weight: 900;
    color: var(--lust-color);
}

.document-list-list {
    margin-left: 30px;
}

.document-list-list li {
    margin: 20px;
    color: var(--black-color);
    font-size: 15px;
}

.center {
    text-align: center;
}

.circle {
    list-style: circle;
}

.square {
    list-style: square;
}

.button-text-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    flex-direction: column;
}

.download-btns {
    text-align: center;
    margin: 20px 0;
}

.download-btn {
    font-size: 20px;
    font-weight: 700;
    color: var(--white-color);
    background: var(--red-orange-color);
    border: none;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
}

.download-btn:hover {
    border-radius: 8px;
}

@media only screen and (max-width: 680px) {
    .mail-section {
        margin: 5px;
    }

    .document-list-list li {
        margin: 5px;
    }
} 