body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffd209;
    color: #000;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

h1 {
    color: #000;
    margin-bottom: 20px;
    font-weight: bold;
}

form {
    background-color: #000;
    border: 1px solid #ffd209;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

label {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffd209;
}

input[type="file"] {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ffd209;
    border-radius: 4px;
    width: 75%;
    background-color: #000;
    color: #ffd209;
}

input[type="number"] {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ffd209;
    border-radius: 4px;
    width: 40%;
    background-color: #000;
    color: #ffd209;
}

input::file-selector-button {
    background-color: #ffd209;
    color: #000;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    margin-right: 10px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

button {
    background-color: #ffd209;
    color: #000;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

button:hover {
    background-color: #e6b800;
}

#status {
    margin-top: 20px;
    font-size: 14px;
    color: #000;
}

#download-link {
    display: none;
    margin-top: 20px;
    text-decoration: none;
    color: #000;
    font-weight: 550;
}

#download-link:hover {
    text-decoration: underline;
}

p {
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
    width: 40%;
}