/* Main container */
.gemini-youtube-tags-generator-container {
    background-color: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
}

.gemini-youtube-tags-generator-container h2 {
    text-align: center;
    color: #282828;
    margin-bottom: 25px;
}

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

.gytg-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #606060;
    font-size: 16px;
    line-height: 1.5;
}

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

.gytg-form-group input[id^="gytg-content-description"]:focus {
    border-color: #ff0000;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

/* Generate and Copy Buttons */
button.gytg-generate-button,
button.gytg-copy-button {
    background-color: #ff0000;
    color: white;
    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;
    margin-top: 10px;
    margin-bottom: 10px;
}

button.gytg-generate-button:hover,
button.gytg-copy-button:hover {
    background-color: #cc0000;
}

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

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

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

/* Section for each set of hashtags (title/description) - this will still apply, but only one "tags-section" will be visible */
.gytg-tags-section {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #ffffff;
}

.gytg-tags-section h4 {
    color: #424242;
    margin-top: 0;
    margin-bottom: 10px;
}

/* Styles for the tag display area (now showing plain text) */
div[id^="gytg-generated-tags-display"] {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 10px;
    min-height: 50px;
    margin-bottom: 15px;
    background-color: #f8f8f8;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    word-wrap: break-word;
    font-weight: bold;
}

/* Copy button specific style for sections */
.gytg-tags-section button.gytg-copy-button {
    margin-top: 5px;
}

/* Copy message */
span[id^="gytg-copy-message"] {
    font-weight: bold;
    color: green;
    margin-left: 10px;
}

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