.history-table-container {
    width: 100%;
    overflow-x: auto;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 120px;
}

.history-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    background: #fafafa;
    border-bottom: 1px solid #e8e8e8;
    color: #333;
}

.history-table td {
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.history-table tbody tr:hover {
    background-color: #fafafa;
}

.filename-cell a {
    color: #555;
    text-decoration: none;
}

.filename-cell a:hover {
    color: #40a9ff;
    text-decoration: underline;
}

.filename-cell a.gray {
    color: #c0c0c0;
    cursor: not-allowed;
}

.download-history {
    margin-bottom: 120px;
}

.downico {
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 5px;
}

@media only screen and (max-width: 767px) {
    .history-table {
        font-size: 12px;
    }

    .history-table th,
    .history-table td {
        padding: 8px;
    }
}