    <style>
        .tunesien-fachkraefte-container {
            max-width: 800px;
            margin: 40px auto;
            padding: 30px;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        .tunesien-fachkraefte-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .tunesien-fachkraefte-form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .tunesien-fachkraefte-label {
            font-weight: 600;
            color: #333;
            font-size: 14px;
        }

        .tunesien-fachkraefte-input,
        .tunesien-fachkraefte-select {
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 15px;
            transition: border-color 0.3s ease;
            background: #fafafa;
        }

        .tunesien-fachkraefte-input:focus,
        .tunesien-fachkraefte-select:focus {
            outline: none;
            border-color: #007bff;
            background: #fff;
        }

        .tunesien-fachkraefte-button {
            padding: 14px 24px;
            background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .tunesien-fachkraefte-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
        }

        .tunesien-fachkraefte-button:active {
            transform: translateY(0);
        }

        .tunesien-fachkraefte-button-large {
            padding: 18px 32px;
            font-size: 18px;
            width: 100%;
            max-width: 400px;
            margin: 20px auto;
            display: block;
        }

        .tunesien-fachkraefte-title {
            font-size: 28px;
            font-weight: 700;
            color: #333;
            margin-bottom: 30px;
            text-align: center;
        }

        .tunesien-fachkraefte-message {
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .tunesien-fachkraefte-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .tunesien-fachkraefte-error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        .tunesien-fachkraefte-info {
            background: #cce5ff;
            color: #004085;
            border: 1px solid #b8daff;
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            margin: 30px 0;
        }

        .tunesien-fachkraefte-info-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #004085;
        }

        .tunesien-fachkraefte-info-text {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #004085;
        }

        .tunesien-fachkraefte-dashboard-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .tunesien-fachkraefte-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #007bff;
        }

        .tunesien-fachkraefte-card-title {
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .tunesien-fachkraefte-card-content {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        .tunesien-fachkraefte-upload-section {
            margin-top: 30px;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 10px;
        }

        .tunesien-fachkraefte-upload-title {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
        }

        .tunesien-fachkraefte-file-input {
            margin-bottom: 15px;
        }

        .tunesien-fachkraefte-todo-list {
            margin-top: 30px;
            padding: 25px;
            background: #fff3cd;
            border-radius: 10px;
            border-left: 4px solid #ffc107;
        }

        .tunesien-fachkraefte-todo-title {
            font-size: 20px;
            font-weight: 600;
            color: #856404;
            margin-bottom: 15px;
        }

        .tunesien-fachkraefte-todo-item {
            padding: 12px;
            margin-bottom: 10px;
            background: white;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .tunesien-fachkraefte-todo-item:last-child {
            margin-bottom: 0;
        }

        .tunesien-fachkraefte-todo-label {
            font-weight: 500;
            color: #333;
        }

        .tunesien-fachkraefte-todo-value {
            color: #666;
            font-size: 14px;
        }

        .tunesien-fachkraefte-document-list {
            margin-top: 20px;
        }

        .tunesien-fachkraefte-document-item {
            padding: 12px;
            background: white;
            border-radius: 6px;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .tunesien-fachkraefte-document-name {
            font-weight: 500;
            color: #333;
        }

        .tunesien-fachkraefte-document-status {
            font-size: 12px;
            padding: 4px 8px;
            border-radius: 4px;
            background: #d4edda;
            color: #155724;
        }

        .tunesien-fachkraefte-t2g-result {
            margin-top: 30px;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 10px;
            border-left: 4px solid #28a745;
        }

        .tunesien-fachkraefte-t2g-result-title {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
        }

        .status-ok {
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            border-left: 4px solid #28a745;
        }

        .status-missing {
            background: #f8d7da;
            color: #721c24;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            border-left: 4px solid #dc3545;
        }

        .tunesien-fachkraefte-loading {
            text-align: center;
            padding: 20px;
            color: #666;
        }

        .tunesien-fachkraefte-spinner {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #007bff;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 0 auto 15px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
    </style>
    {"id":807,"date":"2026-08-09T19:49:06","date_gmt":"2026-08-09T19:49:06","guid":{"rendered":"https:\/\/tune2germany.de\/?page_id=807"},"modified":"2026-08-09T19:49:53","modified_gmt":"2026-08-09T19:49:53","slug":"dashboard-2","status":"publish","type":"page","link":"https:\/\/tune2germany.de\/ar\/dashboard-2\/","title":{"rendered":"Dashboard"},"content":{"rendered":"<div class=\"tunesien-fachkraefte-container\">\n            <div class=\"tunesien-fachkraefte-message tunesien-fachkraefte-error\">\n                Bitte melden Sie sich an, um das Dashboard zu sehen.\n            <\/div>\n        <\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-807","page","type-page","status-publish","hentry"],"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"trp-custom-language-flag":false,"mailpoet_newsletter_max":false,"woocommerce_thumbnail":false,"woocommerce_single":false,"woocommerce_gallery_thumbnail":false},"uagb_author_info":{"display_name":"tune2germany","author_link":"https:\/\/tune2germany.de\/ar\/author\/tune2germany\/"},"uagb_comment_info":0,"uagb_excerpt":null,"_links":{"self":[{"href":"https:\/\/tune2germany.de\/ar\/wp-json\/wp\/v2\/pages\/807","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tune2germany.de\/ar\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/tune2germany.de\/ar\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/tune2germany.de\/ar\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tune2germany.de\/ar\/wp-json\/wp\/v2\/comments?post=807"}],"version-history":[{"count":2,"href":"https:\/\/tune2germany.de\/ar\/wp-json\/wp\/v2\/pages\/807\/revisions"}],"predecessor-version":[{"id":809,"href":"https:\/\/tune2germany.de\/ar\/wp-json\/wp\/v2\/pages\/807\/revisions\/809"}],"wp:attachment":[{"href":"https:\/\/tune2germany.de\/ar\/wp-json\/wp\/v2\/media?parent=807"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}