/* Container styles for both dropdown and phrase translators */
#my-custom-translator-container,
#my-phrase-translator-container {
    padding: 15px;
    border: 1px solid #0073aa;
    border-radius: 5px;
    margin-bottom: 20px;
    background-color: #fff;
}

/* Styles for select dropdowns and text input */
#my-gtranslate-language-select,
#my-gtranslate-phrase-language-select,
#my-gtranslate-phrase-input {
    padding: 8px;
    border: 1px solid #0073aa;
    border-radius: 4px;
    margin-right: 10px;
    margin-bottom: 10px; /* Added for spacing */
    width: 200px; /* Adjust as needed */
    box-sizing: border-box; /* Include padding/border in width */
}

/* Specific style for the phrase input textarea */
#my-gtranslate-phrase-input {
    width: 100%; /* Overrides the 200px width from the combined selector */
    min-height: 80px;
    resize: vertical; /* Allows vertical resizing */
    /* --- UPDATED STYLES FOR THE INPUT TEXTAREA --- */
    font-size: 20px; /* Increased font size */
    color: #000; /* Changed font color to black */
    font-weight: bold; /* Made font bold */
}

/* Styles for translate buttons */
#my-gtranslate-page-translate-btn,
#my-gtranslate-phrase-translate-btn {
    background-color: #00cc00; /* Green now */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    /* Added some margin for spacing between input/select and button */
    margin-top: 5px;
    margin-bottom: 10px;
}

/* Hover styles for buttons */
#my-gtranslate-page-translate-btn:hover,
#my-gtranslate-phrase-translate-btn:hover {
    background-color: #00cc00; /* Darker blue on hover ? */
}

/* Style for the translated output container */
#my-gtranslate-phrase-output {
    /* --- UPDATED STYLES FOR THE OUTPUT CONTAINER --- */
    font-weight: bold;
    font-size: 20px;
    color: #000; /* Changed font color to black */
    text-align: left; /* Removed text-align: center; */
    margin-top: 10px;
    display: block; /* Ensures it's on its own line */
    /* Added container styling to match the input's visual style */
    padding: 8px;
    border: 1px solid #0073aa;
    border-radius: 4px;
    background-color: #fff;
    min-height: 80px;
}
