
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: #f0f2f5;
            padding: 40px 20px;
            display: flex;
            justify-content: center;
        }

        .container {
            width: 100%;
            max-width: 850px;
            background: #ffffff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        h1 {
            margin-top: 0;
            color: #2b5b84;
            font-size: 24px;
        }

        p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Abstand unter dem Code-Block */
        pre[class*="language-"] {
            margin-bottom: 24px;
            border-radius: 8px;
            max-height: 500px; /* Fügt Scrollbalken hinzu, falls der Code zu lang ist */
        }

        /* Python-Style Download-Button */
        .download-btn {
            display: inline-block;
            background-color: #3776ab; /* Python Blau */
            color: #ffd343;            /* Python Gelb */
            padding: 14px 28px;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            font-size: 16px;
            box-shadow: 0 4px 6px rgba(55, 118, 171, 0.2);
            cursor: pointer;
            transition: background-color 0.2s, transform 0.1s, box-shadow 0.1s;
            user-select: none;
        }

        /* Hover-Effekt */
        .download-btn:hover {
            background-color: #2b5b84;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(55, 118, 171, 0.3);
        }

        /* Klick-Effekt */
        .download-btn:active {
            transform: translateY(1px);
            box-shadow: 0 2px 4px rgba(55, 118, 171, 0.2);
        }


