/* Стили для страницы с документами */
.documents-container {
    background-color: rgba(51, 51, 51, 0.8);
    padding: 20px;
    border-radius: 10px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.documents-title {
    font-size: 2em;
    color: #fff;
    margin-bottom: 20px;
}

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Расстояние между документами */
}

.document-item {
    background-color: rgba(85, 85, 85, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

    .document-item h3 {
        font-size: 1.5em;
        color: #fff;
        margin-bottom: 10px;
    }

    .document-item p {
        font-size: 1.2em;
        color: #ccc;
        margin-bottom: 10px;
    }

.download-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6600;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .download-button:hover {
        background-color: #e65c00;
    }
