/* Ser color of search icon on "Suche" */
.commonStyle__zt3BrandBg {
  background-color: #008c9e !important;
}
/* Set color of search icon on "Wissensdatenbank */
#container > portal > div > div:nth-child(6) > div:nth-child(2) > div > div > div.SearchContainer__searchBox.commonStyle__positionRel.commonStyle__w100per > span > svg {
  fill: #008c9e;
}
:root {
            --primary-color: #008c9e; /* Cyberleap primary teal/blue */
            --secondary-color: #180325; /* Cyberleap dark purple/black for backgrounds/buttons */
            --highlight-color: #5fc6da; /* Cyberleap brighter teal/blue for highlights */
            --text-color: #333; /* Standard text color */
            --heading-color: #1a1a1a; /* Dark heading color from Cyberleap */
            --bg-light: #f8f9fa; /* Light background for info boxes */
            --border-color: #dee2e6; /* Light border color */
            --success-color: #28a745;
            --info-color: #17a2b8;
            --font-heading: 'Outfit', sans-serif; /* Cyberleap heading font */
            --font-body: 'Open Sans', sans-serif; /* Cyberleap body font */
        }

        body {
            font-family: var(--font-body);
            line-height: 1.6;
            color: var(--text-color);
            background-color: #ffffff;
            margin: 0;
            padding: 20px;
        }

        .container {
            max-width: 900px;
            margin: 20px auto;
            background: #fff;
            padding: 30px;
            border-radius: 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        h1 {
            font-family: var(--font-heading);
            color: var(--primary-color);
            font-size: 2.5em;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 15px;
        }

        h2 {
            font-family: var(--font-heading);
            color: var(--heading-color);
            font-size: 2em;
            font-weight: 600;
            margin-top: 35px;
            margin-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 10px;
        }

        h3 {
            font-family: var(--font-heading);
            color: var(--heading-color);
            font-size: 1.5em;
            font-weight: 600;
            margin-top: 25px;
            margin-bottom: 10px;
        }

        p {
            margin-bottom: 15px;
        }

        strong {
            color: var(--heading-color);
            font-weight: 700;
        }

        ul {
            list-style-type: disc;
            margin-left: 25px;
            margin-bottom: 15px;
        }

        ol {
            list-style-type: decimal;
            margin-left: 25px;
            margin-bottom: 15px;
        }

        li {
            margin-bottom: 8px;
        }

        .info-box {
            background-color: var(--bg-light);
            border-left: 5px solid var(--primary-color);
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0;
        }

        .info-box p {
            margin: 5px 0;
        }

        .screenshot-placeholder {
            text-align: center;
            margin: 25px 0;
            background-color: var(--bg-light);
            padding: 20px;
            border: 1px dashed var(--border-color);
            border-radius: 0;
            color: #666;
        }

        .screenshot-placeholder img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 10px auto;
            border: 1px solid var(--border-color);
            border-radius: 0;
        }

        .call-to-action {
            background-color: var(--secondary-color);
            color: white;
            padding: 30px;
            border-radius: 0;
            text-align: center;
            margin-top: 40px;
        }

        .call-to-action h3 {
            color: white;
            font-family: var(--font-heading);
        }

        .call-to-action p {
            color: white;
        }

        .call-to-action a {
            color: var(--highlight-color);
            text-decoration: none;
            font-weight: bold;
        }

        .call-to-action a:hover {
            text-decoration: underline;
        }

        .highlight {
            font-weight: bold;
            color: var(--highlight-color);
        }

        .note {
            background-color: #fff3cd;
            border-left: 5px solid #ffc107;
            padding: 10px 15px;
            margin: 15px 0;
            border-radius: 0;
            color: #664d03;
        }

        a {
            color: var(--primary-color);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        /* Styles for the new "Direct to Guide" button */
        .guide-button-container {
            text-align: center;
            margin-top: 30px;
            margin-bottom: 20px;
        }

        .guide-button {
            display: inline-block;
            background-color: var(--highlight-color);
            color: var(--secondary-color) !important;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 0;
            font-family: var(--font-heading);
            font-size: 1.2em;
            font-weight: 700;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .guide-button:hover {
            background-color: var(--primary-color);
            color: white !important;
            transform: translateY(-2px);
            text-decoration: none;
        }
