body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 100%;
    width: 100%;
    margin: 20px auto;
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .container {
        max-width: 800px;
    }
}

h1 {
    color: #333;
    text-align: center;
    border-bottom: 2px solid #007cba;
    padding-bottom: 10px;
}

#currentPath {
    font-weight: bold;
    color: #007cba;
    margin: 10px 0;
    padding: 5px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
}

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

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

th {
    background-color: #f5f5f5;
    font-weight: bold;
}

tr:hover {
    background-color: #f9f9f9;
}

a {
    color: #007cba;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#loading {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin: 20px 0;
}

#uploadProgress {
    margin: 20px 0;
}

#progressBar {
    width: 100%;
    height: 20px;
    border-radius: 10px;
    background-color: #f0f0f0;
}

#progressBar::-webkit-progress-bar {
    background-color: #f0f0f0;
    border-radius: 10px;
}

#progressBar::-webkit-progress-value {
    background-color: #4CAF50;
    border-radius: 10px;
}

#progressBar::-moz-progress-bar {
    background-color: #4CAF50;
    border-radius: 10px;
}

#progressText {
    text-align: center;
    font-weight: bold;
    margin-top: 5px;
}