

/* Start:/local/components/custom/file_list/templates/.default/style.css?17531494182540*/
/* === Base styles === */
.files-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.files-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid #e0e4d8;
    transition: background-color 0.2s ease;
}

.files-list li:hover {
    background-color: #eef4e6;
}

/* === Icon === */
.fa.file-icon {
    font-size: 35px;
    color: #63a200;
    margin-right: 7px;
    flex-shrink: 0;
}

/* === File link === */
.file-link {
    flex-grow: 1;
    font-size: 16px;
    color: #63a200;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-link:hover {
    color: #4d7c00;
    text-decoration: underline;
}

/* === Meta info (size) === */
.file-meta {
    flex-shrink: 0;
    margin-left: 12px;
    font-size: 14px;
    color: #777;
    white-space: nowrap;
}

/* === Download button === */
.download-btn {
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    font: 500 14px/19px Raleway, sans-serif;
    color: #fff;
    background: linear-gradient(135deg, #63a100, #89ce1b);
    box-shadow: 0 6px 18px #63a10066;
    transition: background 0.3s, box-shadow 0.3s;
}

.download-btn:hover {
    background: linear-gradient(135deg, #89ce1b, #aedd3a);
    box-shadow: 0 8px 24px #8ace1b99;
    color: #fff;
}

/* === Section title === */
.files-title {
    margin: 30px 0 16px;
    padding-bottom: 6px;
    font-size: 22px;
    font-weight: bold;
    color: #2f4f0e;
    font-family: "Segoe UI", Tahoma, sans-serif;
    border-bottom: 1px solid #dce2d2;
}

/* === Responsive === */
@media (max-width: 600px) {
    .files-title {
        font-size: 20px;
        text-align: center;
        margin: 24px 0 12px;
    }

    .files-list li {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .fa.file-icon {
        font-size: 30px;
        margin-right: 0;
        flex-basis: 100%;
        text-align: center;
        color: #63a200;
    }

    .file-link {
        flex-basis: 100%;
        margin: 0;
        text-align: center;
        font-size: 16px;
        white-space: normal;
    }

    .file-meta {
        flex-basis: 100%;
        text-align: center;
        margin-top: 2px;
        margin-left: 0;
        font-size: 13px;
    }

    .download-btn {
        flex-basis: 100%;
        max-width: 260px;
        margin-left: 0;
        text-align: center;
        align-self: center;
    }
}

/* End */
/* /local/components/custom/file_list/templates/.default/style.css?17531494182540 */
