
  	.participants-sec{display:block;}



        .participants-sec {
            padding-top: 1.5rem;
            padding-bottom: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            font-family: 'Montserrat', 'Arial', sans-serif;
            font-size: 14px;
            font-weight: 400;
            line-height: 28px;
            color: #565656;
        }

        @media (min-width: 640px) {
            .participants-sec {
                padding-top: 2rem;
                padding-bottom: 2rem;
                gap: 2rem;
            }
        }

/* Header */
         .participants-page-titel {
            background-color: #ffffff;
            border-bottom: 1px solid #cbd5e1;
			text-align:center;
        }

        .participants-page-titel .container {
            padding-top: 1rem;
            padding-bottom: 1rem;
        }

        @media (min-width: 640px) {
            .participants-page-titel .container {
                padding-top: 1.5rem;
                padding-bottom: 1.5rem;
            }
        }

        .participants-page-titel h1 {
            font-size: 18px;
            font-weight: 700;
            color: #252525;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        @media (min-width: 640px) {
            .participants-page-titel h1 {
                font-size: 24px;
            }
        }

        @media (min-width: 768px) {
            .participants-page-titel h1 {
                font-size: 30px;
            }
        }

        .participants-page-titel .header-info {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
			align-items: center;
    justify-content: center;
        }

        @media (min-width: 640px) {
            .participants-page-titel .header-info {
                flex-direction: row;
                gap: 1rem;
            }
        }

        .participants-page-titel .header-info-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 14px;
            color: #565656;
			justify-content: center;
        }

        .participants-page-titel .header-info-item svg {
            width: 16px;
            height: 16px;
            color: #3f3f46;
            flex-shrink: 0;
        }

        /* Main Content */
        .participants-sec main {
            padding-top: 1.5rem;
            padding-bottom: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        @media (min-width: 640px) {
            .participants-sec main {
                padding-top: 2rem;
                padding-bottom: 2rem;
                gap: 2rem;
            }
        }

        /* Document Cards */
        .participants-sec .documents-section {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        @media (min-width: 640px) {
            .participants-sec .documents-section {
                gap: 1rem;
            }
        }

        .participants-sec .document-card {
            background-color: #ffffff;
            border: 1px solid #cbd5e1;
            border-radius: 0.75rem;
            padding: 0.75rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.2s ease;
        }

        @media (min-width: 640px) {
            .participants-sec .document-card {
                padding: 1rem;
                flex-direction: row;
                gap: 1rem;
            }
        }

        @media (min-width: 768px) {
            .participants-sec .document-card {
                padding: 1.5rem;
            }
        }

        .participants-sec .document-card:hover {
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .participants-sec .document-cover {
            flex-shrink: 0;
            width: 100%;
            aspect-ratio: 3 / 4;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.15);
            background-size: cover;
            background-position: center;
            position: relative;
            transition: transform 0.3s ease;
        }

        @media (min-width: 640px) {
            .participants-sec .document-cover {
                width: 160px;
                max-height: 213px;
            }
        }

        .participants-sec .document-card:hover .document-cover {
            transform: scale(1.05);
        }

        .participants-sec .document-cover::after {
            content: '';
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.2);
        }

        .participants-sec .document-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .participants-sec .document-title {
            font-size: 18px;
            font-weight: 600;
            color: #252525;
            margin-bottom: 4px;
            letter-spacing: 1px;
            line-height: 1.36em;
        }

        .participants-sec .document-description {
            font-size: 14px;
            color: #565656;
            margin-bottom: 8px;
            line-height: 28px;
        }

        .participants-sec .document-meta {
            font-size: 13px;
            color: #767676;
            margin-top: 5px;
        }

        .participants-sec .download-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 16px;
            background-color: #252525;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-family: 'Montserrat', 'Arial', sans-serif;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            width: 100%;
            transition: background-color 0.2s ease;
            margin-top: 12px;
        }

        @media (min-width: 640px) {
            .participants-sec .download-btn {
                width: fit-content;
            }
        }

        .participants-sec .download-btn:hover {
            background-color: #000000;
            color: #ffffff;
            text-decoration: none;
        }

        /* Zoom Meetings Section */
        .zoom-section {
            background-color: #ffffff;
            border: 1px solid #cbd5e1;
            border-radius: 0.75rem;
            padding: 0.75rem;
            font-family: 'Montserrat', 'Arial', sans-serif;
            font-size: 14px;
            font-weight: 400;
            line-height: 28px;
            color: #565656;
        }

        @media (min-width: 640px) {
            .zoom-section {
                padding: 1rem;
            }
        }

        @media (min-width: 768px) {
            .zoom-section {
                padding: 1.5rem;
                padding-top: 2rem;
            }
        }

        .zoom-title {
            font-size: 24px;
            font-weight: 600;
            color: #252525;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            letter-spacing: 1px;
            line-height: 1.36em;
        }
        .zoom-title:after {
            display: none;
        }

        .zoom-title svg {
            width: 22px;
            height: 22px;
            color: #3f3f46;
        }

        /* Day Tabs */
        .day-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 12px;
            overflow-x: auto;
        }

        @media (min-width: 640px) {
            .day-tabs {
                margin-bottom: 24px;
                padding-bottom: 16px;
            }
        }

        .day-tab {
            padding: 8px 14px;
            border-radius: 8px;
            font-family: 'Montserrat', 'Arial', sans-serif;
            font-weight: 600;
            border: none;
            cursor: pointer;
            font-size: 14px;
            white-space: nowrap;
            transition: all 0.2s ease;
        }

        .day-tab.active {
            background-color: #252525;
            color: #ffffff;
        }

        .day-tab.inactive {
            background-color: #f1f5f9;
            color: #252525;
        }

        .day-tab.inactive:hover {
            background-color: #e2e8f0;
        }

        /* Sessions */
        .sessions {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        @media (min-width: 640px) {
            .sessions {
                gap: 1rem;
            }
        }

        .session-date {
            font-size: 14px;
            color: #565656;
            line-height: 28px;
            margin-bottom: 8px;
        }

        .session-item {
            border: 1px solid #e2e8f0;
            border-radius: 0.5rem;
            padding: 0.75rem;
            transition: background-color 0.2s ease;
        }

        @media (min-width: 640px) {
            .session-item {
                padding: 1rem;
            }
        }

        .session-item:hover {
            background-color: #f8fafc;
        }

        .session-name {
            font-weight: 600;
            color: #252525;
            margin-bottom: 6px;
            font-size: 16px;
            letter-spacing: 1px;
        }

        .session-time {
            font-size: 14px;
            color: #565656;
            line-height: 28px;
            margin-bottom: 12px;
        }

        .meeting-details {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 14px;
        }

        @media (min-width: 640px) {
            .meeting-details {
                grid-template-columns: 1fr 1fr;
            }
        }

        .meeting-detail-label {
            color: #565656;
            font-weight: 400;
            font-size: 14px;
            line-height: 28px;
        }

        .meeting-detail-value {
            font-weight: 600;
            color: #252525;
            word-break: break-all;
            font-size: 14px;
            line-height: 28px;
        }

        .join-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 16px;
            background-color: #252525;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-family: 'Montserrat', 'Arial', sans-serif;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            width: 100%;
            transition: background-color 0.2s ease;
        }

        .join-btn:hover {
            background-color: #000000;
            color: #ffffff;
            text-decoration: none;
        }

        .participants-sec .no-link {
            font-size: 14px;
            color: #767676;
            font-style: italic;
            line-height: 28px;
        }

        /* CPD Section */
        .cpd-section {
            background-color: #f1f5f9;
            border: 1px solid #cbd5e1;
            border-radius: 0.75rem;
            padding: 0.75rem;
            font-family: 'Montserrat', 'Arial', sans-serif;
            font-size: 14px;
            font-weight: 400;
            line-height: 28px;
            color: #565656;
        }

        @media (min-width: 640px) {
            .cpd-section {
                padding: 1rem;
            }
        }

        @media (min-width: 768px) {
            .cpd-section {
                padding: 1.5rem;
                padding-top: 2rem;
            }
        }

        .cpd-title {
            font-size: 24px;
            font-weight: 600;
            color: #252525;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            letter-spacing: 1px;
            line-height: 1.36em;
        }
        .cpd-title:after {
            display: none;
        }

        .cpd-title svg {
            width: 22px;
            height: 22px;
            color: #3f3f46;
        }

        .cpd-description {
            font-size: 14px;
            color: #565656;
            margin-bottom: 16px;
            line-height: 28px;
        }

        .cpd-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        @media (min-width: 640px) {
            .cpd-content {
                flex-direction: row;
                gap: 1.5rem;
            }
        }

        .cpd-qr {
            background-color: #ffffff;
            padding: 8px;
            border-radius: 8px;
            border: 1px solid #cbd5e1;
            flex-shrink: 0;
        }

        .cpd-qr img {
            width: 160px;
            height: 160px;
            display: block;
        }

        @media (min-width: 640px) {
            .cpd-qr img {
                width: 192px;
                height: 192px;
            }
        }

        .cpd-info {
            text-align: center;
            flex: 1;
        }

        @media (min-width: 640px) {
            .cpd-info {
                text-align: left;
            }
        }

        .cpd-code-label {
            font-size: 16px;
            font-weight: 700;
            color: #252525;
            margin-bottom: 5px;
        }

        .cpd-code {
            font-family: 'Courier New', monospace;
            font-size: 20px;
            font-weight: 700;
            color: #252525;
            margin-bottom: 12px;
            word-break: break-all;
        }

        .cpd-text {
            font-size: 14px;
            color: #565656;
            line-height: 28px;
        }

        /* SVG Icons */
        .participants-sec svg,
        .participants-page-titel svg {
            display: inline-block;
            vertical-align: middle;
        }

        /* Hidden by default */
        .hidden {
            display: none;
        }
