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

.file-manager {
    max-width: 800px;
    width: 90%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th {
    background-color: #f2f2f2;
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.github-link {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
}

.github-link a {
    display: flex;
    align-items: center;
    color: #333;
    font-size: 0.9em;
    text-decoration: none;
}

.github-link i {
    font-size: 1.2em;
    margin-right: 5px;
}

/* Center and style the password section */
.password-section {
    text-align: center;
    padding: 20px;
    background-color: #f5f5f5;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.password-button {
    font-family: 'Hind Siliguri', sans-serif; /* Add this line */
    background-color: #3498db;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

