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

.container {
    background-color: #282a36;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    width: 400px;
}

h1 {
    text-align: center;
    color: #50fa7b;
}

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

input[type="text"],
input[type="number"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #44475a;
    border-radius: 5px;
    background-color: #44475a;
    color: #f8f8f2;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #6272a4;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #50fa7b;
}

.status {
    margin-top: 20px;
}

progress {
    width: 100%;
    height: 20px;
    margin-bottom: 15px;
}

pre {
    background-color: #44475a;
    padding: 10px;
    border-radius: 5px;
    height: 200px;
    overflow-y: auto;
    white-space: pre-wrap;
}
