body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}
.container {
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 100%;
    max-width: 800px;
}
.file-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    table-layout: fixed;
}
.file-table th, .file-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    word-wrap: break-word;
}
.file-table th {
    background-color: #f2f2f2;
	text-align: center;
}
.file-table .file-name {
    width: 72%;
}
.file-table .file-size {
    width: 11%;
}
.file-table .file-downloads {
    width: 10%;
}
.file-table .file-action {
    width: 7%;
}
.file-name {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.file-name-wrapper {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pagination {
    margin-top: 20px;
    text-align: center;
}
.pagination a {
    margin: 0 5px;
    text-decoration: none;
    padding: 8px 12px;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
}
.pagination a.active {
    background-color: #0056b3;
}
.pagination a:hover {
    background-color: #0056b3;
}
form {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}
form input[type="text"] {
    padding: 8px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}
form button {
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
form button:hover {
    background-color: #0056b3;
}
.download-button {
    display: inline-block;
    padding: 4px 8px;
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    transition: background-color 0.3s;
	font-weight: bold; 
	font-size: 1.2em;
	text-align: center;
}
.download-button:hover {
    background-color: #218838;
}
@media (max-width: 600px) {
    .container {
        padding: 10px;
        max-width: 100%;
    }
    .file-table th, .file-table td {
        padding: 6px;
        font-size: 14px;
    }
    .pagination a {
        padding: 6px 8px;
        font-size: 14px;
    }
    .file-name {
        max-width: 100px;
    }
}