        /* --- Prefixed CSS with "gemini-" --- */
        /* Basic Reset & Box Sizing */
        .gemini-body, .gemini-html {
            margin: 0;
            padding: 0;
            font-family: sans-serif; /* Simple font */
        }
        .gemini-*, .gemini-*::before, .gemini-*::after {
            box-sizing: border-box;
        }

        /* Main Container */
        .gemini-container {
            max-width: 900px; /* Max width */
            margin: 20px auto; /* Center the container */
            padding: 15px;
            border: 1px solid #217a72;
            border-radius: 8px;
            background-color: #393e3f;
        }

        /* Responsive Box (untuk menampilkan konten) */
        .gemini-responsive-box {
            position: relative; /* Needed for absolute positioning of iframe if used directly */
            width: 100%;
            /* aspect-ratio: 16 / 9;  Use aspect ratio for video content */
            min-height: 300px; /* Minimum height */
            background-color: #333333;
            border: 1px solid #217a72;
            margin-bottom: 15px;
            overflow: hidden; /* Hide overflow */
            display: flex; /* Center placeholder text */
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #555;
            font-size: 1.2em;
            border-radius: 5px;
        }

        /* Styling for iframe if used */
        .gemini-responsive-box iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none; /* Remove iframe border */
        }

        /* Button Bar Container */
        .gemini-button-bar {
            display: flex;
            justify-content: space-between; /* Left and Right groups */
            align-items: center;
            flex-wrap: wrap; /* Allow wrapping on smaller screens */
            gap: 10px; /* Space between groups if they wrap */
            border-top: 1px solid #217a72;
            padding-top: 15px;
        }

        /* Button Groups */
        .gemini-button-group-left,
        .gemini-button-group-right {
            display: flex;
            flex-wrap: wrap; /* Allow buttons to wrap within group */
            gap: 8px; /* Space between buttons */
            align-items: center;
        }

        /* General Button Styling */
        .gemini-btn {
            padding: 8px 15px;
            font-size: 14px;
            cursor: pointer;
			border: 1px solid #393e3f;
			background-color: #ff474d;
            color: #333;
            border-radius: 4px;
            transition: background-color 0.3s ease, border-color 0.3s ease;
            text-decoration: none; /* For anchor tags styled as buttons */
            display: inline-block; /* Proper alignment and padding */
            text-align: center;
        }

        .gemini-btn:hover {
            background-color: #e0e0e0;
            border-color: #bbb;
        }

        .gemini-btn:active {
             background-color: #d0d0d0;
        }

        /* Dropdown Specific Styling */
        .gemini-dropdown {
            position: relative; /* Context for absolute positioning */
            display: inline-block; /* Align with other buttons */
        }

        .gemini-dropdown-content {
            display: none; /* Hidden by default */
            position: absolute;
            bottom: 100%; /* Position above the button */
            left: 0;
            background-color: #ffffff;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1; /* Ensure it's above other elements */
            border: 1px solid #ccc;
            border-radius: 4px;
            margin-bottom: 5px; /* Space between button and dropdown */
        }

        /* Links/Items inside the dropdown */
        .gemini-dropdown-content a {
            color: black;
            padding: 10px 14px;
            text-decoration: none;
            display: block;
            font-size: 14px;
            white-space: nowrap; /* Prevent wrapping */
        }

        .gemini-dropdown-content a:hover {
            background-color: #f1f1f1;
        }

        /* Class to show the dropdown (added via JavaScript) */
        .gemini-show {
            display: block;
        }

        /* Responsive Adjustments */
        @media (max-width: 600px) {
            .gemini-button-bar {
                flex-direction: column; /* Stack groups vertically */
                align-items: stretch; /* Make groups take full width */
            }
            .gemini-button-group-left,
            .gemini-button-group-right {
                justify-content: center; /* Center buttons within group */
                width: 100%;
                 margin-bottom: 10px;
            }
             .gemini-button-group-right {
                 margin-bottom: 0; /* No bottom margin for the last group */
             }
            .gemini-btn {
                flex-grow: 1; /* Allow buttons to grow if needed */
                text-align: center;
            }
            .gemini-responsive-box {
                min-height: 250px; /* Adjust height for smaller screens */
            }
            .gemini-dropdown-content {
                /* Adjust position slightly if needed on mobile */
                 min-width: 100%; /* Make dropdown full width relative to button */
            }
        }	
