body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 500px;
}

h1 {
    color: #333;
    margin-bottom: 25px;
}

.file-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.file-list li {
    background-color: #e9e9e9;
    margin-bottom: 10px;
    padding: 12px 15px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file-list li a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    flex-grow: 1; /* Allows the link to take up available space */
    text-align: left;
}

.file-list li a:hover {
    text-decoration: underline;
}

.file-list li span {
    color: #555;
    font-size: 0.9em;
}

p {
    color: #666;
    font-size: 0.9em;
}
