/* Main container */
.gemini-youtube-shorts-tag-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-shorts-tag-generator-container h2 {
    text-align: center;
    color: #282828;
    margin-bottom: 25px;
}

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

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

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

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

/* Generate and Copy Buttons */
button.gystg-generate-button,
button.gystg-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.gystg-generate-button:hover,
button.gystg-copy-button:hover {
    background-color: #cc0000;
}

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

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

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

/* New: Section for each set of hashtags (title/description) */
.gystg-tags-section {
    margin-bottom: 20px; /* Space between title and description sections */
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #ffffff;
}

.gystg-tags-section h4 {
    color: #424242; /* Darker grey for subheadings */
    margin-top: 0;
    margin-bottom: 10px;
}

/* Styles for the tag display area (now showing plain text) */
div[id^="gystg-title-tags-display"],
div[id^="gystg-keywords-display"], /* Added this ID to include keywords in the styled field */
div[id^="gystg-description-hashtags-display"] {
    border: 1px solid #e0e0e0; /* Lighter border for display areas */
    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 */
.gystg-tags-section button.gystg-copy-button {
    margin-top: 5px; /* Slightly less margin from the tag display */
}

/* Copy message */
span[id^="gystg-copy-title-message"],
span[id^="gystg-copy-keywords-message"], /* Added this ID to include keywords copy message */
span[id^="gystg-copy-description-message"] {
    font-weight: bold;
    color: green;
    margin-left: 10px;
}

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