body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 500px;
    padding: 20px;
    border-radius: 8px;
    background-color: #222;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

input,
button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    background: none;
    color: inherit;
    border: 2px solid #333;
    box-sizing: border-box;
}

button {
    background-color: #0a58ca;
    border: none;
}

button:hover {
    background-color: #0d6efd;
}

.status-message {
    margin-top: 10px;
    font-size: 0.9em;
}

.progress-info {
    position: relative;
    width: 100%;
}

.progress-label {
    position: absolute;
    width: 100%;
    text-align: center;
    line-height: 20px;
    color: #fff;
    font-size: 1em;
    left: 0px;
}

progress {
    width: 100%;
    height: 20px;
    background-color: #333;
    color: #0a58ca;
}

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

progress::-webkit-progress-value {
    background-color: #0a58ca;
}

progress::-moz-progress-bar {
    background-color: #0a58ca;
}

#download-link {
    width: 100%;
    padding: 5px 10px;
    margin-top: 5px;
}

label {
    display: block;
    margin-top: 10px;
}