/*
 * Styles for the AdVoice Image to Video plugin.
 *
 * Provides a clean layout for the form, with spacing and responsive
 * presentation.  Buttons inherit theme colours but can be customized
 * via your child theme.
 */

.adviv-container {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    max-width: 600px;
}

.adviv-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.adviv-form input[type="file"],
.adviv-form input[type="number"] {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.adviv-generate {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #4c51bf;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.adviv-generate:hover {
    background-color: #434190;
}

.adviv-status {
    margin-top: 10px;
    font-size: 14px;
}

.adviv-download {
    display: inline-block;
    padding: 8px 16px;
    background-color: #2b6cb0;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
}

.adviv-download:hover {
    background-color: #2c5282;
}