/* gemini-tiktok-tags/css/style.css - MODIFIED */

/* Main container - IMPORTANT: Ensure this matches the class name in your PHP shortcode */
/* If your PHP outputs <div class="gemini-tiktok-tag-generator-container"...> this is correct. */
/* If your PHP still outputs <div class="gemini-youtube-tag-generator-container"...> for TikTok, change this to .gemini-youtube-tag-generator-container */
/* Main container */
.gemini-tiktok-tag-generator-container {
    background-color: transparent; /* Changed from #f9f9f9 to transparent */
    border: none; /* Changed from 1px solid #ddd to none */
    padding: 0; /* Changed from 25px to 0 */
    border-radius: 0; /* Changed from 8px to 0 */
    max-width: 600px;
    margin: 0 auto; /* Adjust margin if you want to center within shortcode-content */
    font-family: Arial, sans-serif;
}

.gemini-tiktok-tag-generator-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
}

.gttg-form-group {
    margin-bottom: 0px;
}

.gttg-form-group label { /* Assuming this is the correct class for TikTok */
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
    font-size: 16px; /* ADD THIS LINE for explicit font size */
    line-height: 1.5; /* Optional: Add line-height for consistent vertical spacing */
}

/* Input field */
.gttg-form-group input[id^="gttg-content-description"] {
    width: 100%; /* Changed to 100% */
    padding: 12px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; /* Added to ensure consistent box model */
}

/* gemini-tiktok-tags/css/style.css - Corrected focus style */
.gttg-form-group input[id^="gttg-content-description"]:focus {
    border-color: #25f4ee; /* TikTok color, matching the buttons */
    outline: none; /* This removes the default browser outline */
}

/* Generate and Copy Buttons */
button.gttg-generate-button,
button.gttg-copy-button {
    background-color: #25f4ee; /* Tiktok color */
    color: black;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    box-sizing: border-box; /* Include padding in width calculation */
    margin-top: 10px;    /* ADD THIS LINE for consistent spacing from input */
    margin-bottom: 10px; /* Keep this for spacing *after* the generate button */
}

button.gttg-generate-button:hover,
button.gttg-copy-button:hover {
    background-color: #1edddd;
}

/* Loading message */
div[id^="gttg-loading"] {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: #666;
}

/* Results container */
div[id^="gttg-results"] {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Results H3 */
div[id^="gttg-results"] h3 {
    color: #333;
    margin-bottom: 15px;
}

/* Styles for the tag display area (now showing plain text) */
div[id^="gttg-tags-display"] {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    min-height: 50px; /* Smaller min-height as no buttons */
    margin-bottom: 15px;
    background-color: #f0f0f0;
    font-size: 16px;
    line-height: 1.6;
    color: #000000; /* TikTok Cyan for the text */
    word-wrap: break-word; /* Ensure long tags wrap */
    font-weight: bold; /* ADDED: This makes the tags bold */
}

/* Copy button specific style */
button.gttg-copy-button {
    margin-top: 10px;
}

/* Copy message */
span[id^="gttg-copy-message"] {
    font-weight: bold;
    color: green; /* Add this line */
    margin-left: 10px; /* From inline style, make it explicit here */
}

/* Error message */
div[id^="gttg-error-message"] {
    color: red;
    margin-top: 10px;
    display: none;
}