/*
 * Styles for the AdVoice Voiceover shortcode.
 *
 * The voiceover form is designed to be clean and compact, matching the
 * typography of the AdVoice theme.  Inputs are full width on narrow
 * viewports and displayed inline on larger screens.  Colors and spacing
 * follow the theme’s palette but can be overridden in your child theme.
 */

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

.advvo-container textarea.advvo-text {
    width: 100%;
    min-height: 120px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    font-size: 14px;
    margin-bottom: 12px;
}

.advvo-container select.advvo-voice {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
}

.advvo-container label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.advvo-container input[type="range"] {
    width: 100%;
    margin-top: 4px;
}

.advvo-container .advvo-play {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #4c51bf;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.advvo-container .advvo-play:hover {
    background-color: #434190;
}

.advvo-container .advvo-status {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}