/* gemini-tag-switcher/css/switcher-style.css */
.gemini-tag-switcher-container {
    max-width: 600px;
    margin: 20px auto;
    font-family: 'Roboto', sans-serif;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Softer, slightly larger shadow for container */
}

.gmts-buttons {
    display: flex;
    justify-content: center; /* Ensures buttons are centered */
    margin-bottom: 25px;
    gap: 15px; /* Increased space between buttons for better separation */
    flex-wrap: wrap; /* Allow buttons to wrap to the next line on smaller screens */
}

.gmts-button {
    background-color: #e8e8e8; /* Lighter default background */
    color: #444; /* Slightly softer text color */
    /* Adjust padding to make the button a square or circle for the icon */
    padding: 15px; /* Equal padding for a square shape */
    border: none;
    border-radius: 50%; /* Make buttons circular */
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    flex-grow: 0;
    text-align: center;
    /* Set fixed width and height for square/circular buttons */
    width: 60px; /* Fixed width */
    height: 60px; /* Fixed height */
    display: flex; /* Make the button a flex container */
    align-items: center; /* Vertically align icon */
    justify-content: center; /* Horizontally align icon */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); /* Softer shadow for buttons */
}

.gmts-button i {
    margin-right: 0; /* No margin needed as there's no text */
    font-size: 28px; /* Larger icon size for prominence */
}

.gmts-button:hover {
    background-color: #d8d8d8;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.gmts-button.gmts-active {
    /* Default active style, can be overridden by specific buttons */
    background-color: #ff3366; /* A more vibrant and modern red/pink for generic active */
    color: white; /* Icon will inherit this color */
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.4);
    transform: translateY(0);
}

.gmts-button.gmts-active:hover {
    /* Default active hover style */
    background-color: #cc2952;
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.5);
}

/* --- Specific Styles for TikTok Button --- */
#gmts-show-tiktok.gmts-active {
    background-color: #25f4ee; /* TikTok specific active color */
    color: #000; /* Ensure text/icon is visible, black works well with bright cyan */
    box-shadow: 0 4px 12px rgba(37, 244, 238, 0.4); /* Matching shadow color */
}

#gmts-show-tiktok.gmts-active:hover {
    background-color: #1edddd; /* Slightly darker cyan for hover */
    box-shadow: 0 5px 15px rgba(37, 244, 238, 0.5); /* Matching shadow color on hover */
}


.gmts-generator-section {
    padding: 10px 0;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

.gemini-youtube-shorts-tag-generator-container,
.gemini-youtube-tags-generator-container,
.gemini-tiktok-tag-generator-container {
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
}