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

h1, h2, h3 {
    color: white;
}

a {
    color: #1E90FF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

input, button {
    background-color: #333;
    color: white;
    border: 1px solid #555;
    padding: 8px 12px;
    margin: 5px 0;
}

input:focus, button:focus {
    outline: none;
    border-color: #1E90FF;
}

#progressContainer {
    width: 80%; /* Adjust width as needed */
    margin: 20px auto; /* Center the container */
}

progress {
    width: 100%; /* Ensure the bar fits within the container */
    height: 20px; /* Adjust height for better visibility */
    background-color: #333;
    border: 1px solid #555;
}

progress::-webkit-progress-bar {
    background-color: #333;
}

progress::-webkit-progress-value {
    background-color: #1E90FF; /* Color for the progress bar */
}

progress::-moz-progress-bar {
    background-color: #1E90FF; /* Firefox compatibility */
}

#progressText {
    text-align: center;
    margin-top: 5px;
    font-size: 14px;
}

#fileInput {
    width: 80%; /* Adjust width to desired size */
    max-width: 600px; /* Optional: Limit the maximum width */
    padding: 8px; /* Add padding for better appearance */
}
