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

.container {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    background-color: #1c1c1c;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
}

h1 {
    color: #ff4500;
    font-size: 1.8em;
}
input[type="file"] {
    display: inline-block;
    padding: 10px 15px;
    font-size: 1em;
    border: none;
    border-radius: 4px;
    background-color: #ff4500;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    margin-bottom: 15px;
}

input[type="file"]:hover {
    background-color: #e04300;
}
.controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #ff4500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

#status {
    margin-top: 20px;
    font-size: 0.9em;
    color: #ccc;
}
footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #ccc;
}
