.elementor-6186 .elementor-element.elementor-element-82bf04e{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e5c6ad2 */.cug-container {
            display: flex;
            flex-direction: row;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            overflow: hidden;
            max-width: 1200px;
            width: 100%;
        }
        .cug-left-section {
            flex: 1;
            padding: 15px;
            background-color: #ffffff;
        }
        .cug-left-section h1 {
            margin-bottom: 12px;
            font-size: 1.4em;
            color: #2d3748;
            text-align: center;
        }
        .cug-color-section {
            margin-bottom: 16px;
        }
        .cug-color-section h2 {
            margin-bottom: 6px;
            font-size: 1em;
            color: #4a5568;
        }
        .cug-input-row {
            display: flex;
            align-items: center;
            margin-bottom: 6px;
        }
        .cug-input-row label {
            flex: 1;
            font-weight: 500;
            color: #2d3748;
            font-size: 0.9em;
        }
        .cug-input-row input[type="color"] {
            flex: 1;
            height: 30px;
            cursor: pointer;
            padding: 0;
            margin-right: 6px;
            border-radius: 4px;
        }
        .cug-input-row input[type="text"] {
            flex: 2;
            padding: 5px 7px;
            border: 1px solid #cbd5e0;
            border-radius: 4px;
            font-size: 0.85em;
            transition: border-color 0.3s;
        }
        .cug-input-row input[type="text"]:focus {
            border-color: #3182ce;
            outline: none;
        }
        .cug-note {
            font-size: 0.75em;
            color: #718096;
            margin-top: -3px;
            margin-left: 60px;
        }
        .cug-generate-btn {
            width: 100%;
            padding: 8px;
            background-color: #3182ce;
            color: #ffffff;
            border: none;
            border-radius: 6px;
            font-size: 0.85em;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 6px;
        }
        .cug-generate-btn:hover {
            background-color: #2c5282;
        }
        .cug-generated-iframe-code {
            width: 100%;
            padding: 8px;
            margin-top: 10px;
            background-color: #2d2d2d;
            color: #f8f8f2;
            font-family: 'Courier New', Courier, monospace;
            border-radius: 4px;
            overflow-x: auto;
            white-space: pre-wrap;
            word-wrap: break-word;
        }
        .cug-copy-btn {
            width: 100%;
            padding: 8px;
            background-color: #444;
            color: #ffffff;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.85em;
            transition: background-color 0.3s;
            margin-top: 6px;
        }
        .cug-copy-btn:hover {
            background-color: #2f855a;
        }
        .cug-instructions {
            font-size: 0.8em;
            color: #4a5568;
            margin-top: 14px;
            line-height: 1.3;
        }
        .cug-right-section {
            flex: 1;
            border-left: 1px solid #e2e8f0;
            background-color: #f7fafc;
            position: relative;
        }
        .cug-right-section h2 {
            position: absolute;
            top: 15px;
            left: 15px;
            font-size: 1.1em;
            color: #2d3748;
        }
        .cug-iframe-container {
            position: absolute;
            top: 50px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            border: none;
            border-radius: 8px;
            overflow: hidden;
        }
        .cug-iframe-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 8px;
        }
        @media (max-width: 900px) {
            .cug-container {
                flex-direction: column;
            }
            .cug-right-section {
                border-left: none;
                border-top: 1px solid #e2e8f0;
                height: 350px;
            }
            .cug-right-section h2 {
                position: static;
                text-align: center;
                margin-top: 16px;
                font-size: 1.1em;
            }
            .cug-iframe-container {
                top: 80px;
                left: 15px;
                right: 15px;
                bottom: 15px;
            }
        }

        /* Klinik-Suche */
        .clinic-search-section {
            margin-top: 20px;
        }
        #clinicSearch {
            width: 100%;
            padding: 7px;
            font-size: 0.85em;
            border: 1px solid #cbd5e0;
            border-radius: 4px;
            margin-bottom: 6px;
            position: relative;
        }
        #clinicResults {
            list-style: none;
            padding: 0;
            margin: 0;
            max-height: 180px;
            overflow-y: auto;
            border: 1px solid #cbd5e0;
            border-radius: 4px;
            display: none;
            position: relative;
            background-color: #fff;
            position: absolute;
        }
        #clinicResults li {
            padding: 6px;
            cursor: pointer;
        }
        #clinicResults li:hover {
            background-color: #e2e8f0;
        }
        
        .Title {
  display: block; /* Ensures the title is treated as a block element */
  text-align: center; /* Centers the text horizontally */
  margin-bottom: 5px; /* Adds space between the title and the box below */
  font-size: 30px; /* Adjusts the font size for emphasis */
  font-weight: bold; /* Makes the title bold */
  color: #333; /* Sets the color of the text */
}
.copy-container {
    display: flex;
    justify-content: flex-end; /* Aligns the button to the right */
    padding: 10px; /* Optional spacing */
}

.cug-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px; /* Space between icon and text */
    font-size: 0.85em;
    font-weight: 500;
    padding: 8px 12px;
    color: #444;
    background: #444; /* Transparent background */
    
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cug-copy-btn:hover {
    background-color: #444; /* Blue background on hover */
    color: #ffffff; /* White text on hover */
}

.cug-copy-btn .icon {
    font-size: 1em; /* Icon size */
}/* End custom CSS */