

        :root {
            --primary-color: #286fb7;
            --primary-hover: #215d9a;
            --secondary-color: #f8f9fa;
            --text-color: #343a40;
            --light-bg: #f5f8fb;
            --card-border: #d2d3d5;
            /* New category colors */
            --all-color: #6c757d;
            --pflege-color: #cce8fd;
            --mt-color: #a7dbca;
            --arzte-color: #244d7b;
        }



        .header-section {
            text-align: center;
            margin-bottom: 40px;
            padding: 0 15px;
        }

        .main-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 2.5rem;
        }

        .subtitle {
            color: #6c757d;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .category-filter {
            margin-bottom: 40px;
            text-align: center;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }

        .category-btn {
            background: white;
            border: 2px solid;
            border-radius: 8px;
            padding: 12px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

            /* All categories button */
            .category-btn[data-category="all"] {
                color: var(--all-color);
                border-color: var(--all-color);
            }

                .category-btn[data-category="all"]:hover,
                .category-btn[data-category="all"].active {
                    background: var(--all-color);
                    color: white;
                }

            /* Pflege button */
            .category-btn[data-category="pflege"] {
                /*color: var(--pflege-color);*/
                background: var(--pflege-color);
                border-color: var(--pflege-color);
            }

                .category-btn[data-category="pflege"]:hover,
                .category-btn[data-category="pflege"].active {
                    background: var(--pflege-color);
                    /*color: white;*/
                }

            /* MT button */
            .category-btn[data-category="mt"] {
                background: var(--mt-color);
                border-color: var(--mt-color);
            }

                .category-btn[data-category="mt"]:hover,
                .category-btn[data-category="mt"].active {
                    background: var(--mt-color);
                    /* color: white;*/
                }

            /* Ärzte button */
            .category-btn[data-category="arzte"] {
                background: var(--arzte-color);
                color: #ffffff;
                border-color: var(--arzte-color);
            }

                .category-btn[data-category="arzte"]:hover,
                .category-btn[data-category="arzte"].active {
                    background: var(--arzte-color);
                    color: white;
                }

            .category-btn:hover, .category-btn.active {
                transform: translateY(-3px);
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            }

        .profile-card {
            border: 2px solid var(--card-border);
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            height: 100%;
            background: white;
            display: flex;
            flex-direction: column;
        }

            .profile-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
                border-color: #c5d5e6;
            }

        .card-top-row {
            display: flex;
            padding: 20px 20px 5px 20px;
            flex: 1;
        }

        .profile-img-container {
            flex: 0 0 140px;
            /*display: flex;
        align-items: flex-start;*/
            justify-content: center;
            text-align: center;
            margin-right: 20px;
        }

        .profile-img {
            width: 100%;
            min-height: 170px;
            max-height: 170px;
            object-fit: cover;
            border-radius: 0px;
            border: 2px solid var(--card-border);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }


        .profile-id {
            font-size: 0.6rem;
            color: #666;
            background: #f5f8fa;
            line-height: 18px;
            padding: 4px 6px;
            border-radius: 0px;
            margin-top: 8px;
        }

        .profile-info {
            flex: 1;
        }

        .profile-name {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 8px;
        }

        .profile-job {
            color: #6c757d;
            font-weight: 500;
            margin-bottom: 15px;
            font-size: 0.8rem;
        }

        .profile-details {
            margin-bottom: 15px;
        }

        .profile-detail {
            display: flex;
            align-items: center;
            margin-bottom: 4px;
            font-size: 0.8rem;
        }

            .profile-detail i {
                width: 24px;
                color: var(--primary-color);
                margin-right: 10px;
                font-size: 0.8rem;
            }

        .card-bottom-row {
            padding: 15px 20px;
            background-color: #f9fbfd;
            border-top: 1px solid #eaeaea;
        }

        .profile-actions {
            display: flex;
            flex-direction: row;
            gap: 10px;
        }

        .d-video-btn {
            width: 100%;
            background-color: #f6f7f9;
            border-color: var(--card-border);
            padding: 10px 5px;
            border-radius: 0px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            font-size: 0.7rem;
            margin-top: 5px;
        }

            .d-video-btn:hover {
                background-color: #dcdcdc;
                border-color: var(--card-border);
                transform: translateY(-2px);
            }

        .btn-primary {
            background-color: #dcdcdc;
            border-color: #f6f7f9;
            padding: 10px 5px;
            border-radius: 6px;
            font-weight: 500;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            font-size: 0.9rem;
        }

            .btn-primary:hover {
                background-color: #dcdcdc;
                border-color: var(--card-border);
                transform: translateY(-2px);
            }

        .btn-outline-pvcard {
            background-color: #f6f7f9;
            border-color: var(--card-border);
            padding: 10px 5px;
            border-radius: 0px;
            font-weight: 500;
            width: 50%;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            font-size: 0.7rem;
        }

            .btn-outline-pvcard:hover {
                background-color: #dcdcdc;
                border-color: var(--card-border);
                transform: translateY(-2px);
            }

        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
            text-align: center;
        }

            .section-title:after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
                height: 4px;
                background-color: var(--primary-color);
                border-radius: 2px;
            }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .card-top-row {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .profile-img-container {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .profile-detail {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .category-filter {
                flex-direction: column;
                align-items: center;
            }

            .category-btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .profile-img {
                width: 100px;
                height: 100px;
            }

            .profile-actions {
                flex-direction: column;
                gap: 10px;
            }

            .main-title {
                font-size: 2.2rem;
            }

            .subtitle {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {
            .card-top-row {
                padding: 15px;
            }

            .card-bottom-row {
                padding: 15px;
            }

            .profile-name {
                font-size: 1.3rem;
            }

            .profile-detail {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }

                .profile-detail i {
                    margin-right: 0;
                }

            .btn-primary, .btn-outline-pvcard {
                padding: 10px 5px;
                font-size: 0.85rem;
            }
        }


        /* Pagination Styles - Bootstrap kompatibel */
        .pagination {
            display: flex;
            padding-left: 0;
            list-style: none;
            /*border-radius: 0.375rem;*/
            gap: 0.25rem;
        }

        .page-item {
            display: inline-block;
        }

            .page-item .page-link {
                position: relative;
                display: block;
                padding: 0.5rem 0.75rem;
                font-size: 0.95rem;
                font-weight: 500;
                line-height: 1.25;
                color: #286fb7;
                background-color: #fff;
                border: 1px solid #e2e8f0;
                /*border-radius: 0.5rem;*/
                transition: all 0.2s ease-in-out;
                text-decoration: none;
                cursor: pointer;
            }

                .page-item .page-link:hover {
                    z-index: 2;
                    color: #0a4055;
                    background-color: #f1f5f9;
                    border-color: #0b4f6c;
                }

            .page-item.active .page-link {
                z-index: 3;
                color: #fff;
                background: #286fb7;
                border-color: #0b4f6c;
            }

            .page-item.disabled .page-link {
                color: #94a3b8;
                pointer-events: none;
                cursor: not-allowed;
                background-color: #fff;
                border-color: #e2e8f0;
                opacity: 0.6;
            }

            /* Optional: Hover effect for non-active items */
            .page-item:not(.active):not(.disabled) .page-link:hover {
                transform: translateY(-2px);
                box-shadow: 0 4px 8px rgba(11, 79, 108, 0.1);
            }

        /* Responsive adjustments */
        @media (max-width: 576px) {
            .pagination {
                flex-wrap: wrap;
                justify-content: center;
            }

            .page-item .page-link {
                padding: 0.4rem 0.6rem;
                font-size: 0.85rem;
            }
        }

        /* Loading spinner animation */
        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .fa-spinner {
            animation: spin 1s linear infinite;
        }
    