﻿.document-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    background-color: "red";
}

@media screen and (max-width: 769px) {
    .document-list {
        gap: 5px;
    }
}

.document-list-item {
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: start;
}

@media screen and (max-width: 769px) {
    .document-list-item {
        gap: 5px;
    }
}

.document-list-item input {
    width: 18px;
    height: 18px;
}

    .document-list-item input[type="checkbox"]:checked {
        background-color: #00368b;
    }

.document-list-item label {
    font-size: 15px;
    color: #464849;
    line-height: 25px;
    font-weight: 400;
    max-width: 75%;
}

@media screen and (max-width: 769px) {
    .document-list-item label {
        font-size: 13px;
        max-width: 100%;
    }
}

.document-container input[type="button"] {
    width: 180px;
    height: 40px;
    background-color: #ffc655;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}
