* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-bar {
    width: 100%;
    background-color: #4CAF50;
    padding: 20px;
    text-align: center;
    color: white;
}

.container {
    flex: 1;
    margin-top: 50px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    align-self: center;
}

input[type="text"], select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

select {
    font-size: 1rem;
    background-color: #fff;
    cursor: pointer;
}

#status {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
    height: 20px;
    margin: 20px 0;
}

#progress {
    width: 0;
    height: 100%;
    background-color: #4CAF50;
    transition: width 0.2s ease;
}

#generate-button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    #generate-button:hover {
        background-color: #45a049;
    }

/* Footer styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    position: relative;
    width: 100%;
    bottom: 0;
}
