/* Bio Generator specific styles */

/* Form specific styles */
button[type="submit"] {
    background-color: #338231;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 32px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    margin-top: 20px;
    font-size: 1em;
}

button[type="submit"]:hover {
    background-color: #2d762c;
}

/* Forms */
label {
    display: block;
    margin-top: 20px;
    font-weight: bold;
}

input[type="text"], 
select, 
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 1em;
}

/* Results */
#result {
    margin-top: 20px;
    background-color: #ecf0f1;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #bdc3c7;
}