.document-section {
    margin: 20px auto;
}

.document-section.align-left {
    margin-left: 0;
    margin-right: auto;
}

.document-section.align-center {
    margin-left: auto;
    margin-right: auto;
}

.document-section.align-right {
    margin-left: auto;
    margin-right: 0;
}

.document-section h2 {
    text-align: center;
}

.document-list {
    width: 100%;
    border-collapse: collapse;
}

.document-list td {
    padding: 10px;
    border: 1px solid #ddd;
    vertical-align: middle;
}

/* Set widths for table columns */
.document-list td.file-icon,
.document-list td.file-download {
    width: 50px;
    text-align: center;
}

.document-list td.file-size {
    width: 150px;
    text-align: right;
}

/* Set icon sizes */
.document-list .file-icon img {
    width: 40px; /* PDF icon size */
    height: auto;
    display: block;
    margin: 0 auto;
}

.document-list .file-download img {
    width: 30px; /* Download icon size */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Hide the size column on mobile if the option is selected */
{% if module.hide_size_on_mobile %}
@media screen and (max-width: 600px) {
    .document-list td.file-size {
        display: none;
    }
}
{% endif %}
