
        :root {
            /* Updated theme colors to match your branding */
            --color-primary: #7357eb;
            --color-primary-light: #8f78f0;
            --color-primary-lighter: #f0ebff;
            --color-primary-dark: #5a41c9;
            --color-secondary: #4ade80;
            --color-secondary-light: #6fe79a;
            --color-secondary-dark: #2ebb62;
            --color-background: #f8faff;
            --color-card: #ffffff;
            --color-text: #4a5568;
            --color-text-light: #718096;
            --color-text-dark: #2d3748;
            --color-border: #e2e8f0;
            --color-link: #63b3ed;
            --color-website: #3182ce;
            --color-website-hover: #2c5282;
            --color-call: #38a169;
            --color-call-hover: #2f855a;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --radius-sm: 0.375rem;
            --radius-md: 0.5rem;
            --radius-lg: 0.75rem;
            --radius-full: 9999px;
            
            /* Social Media Colors */
            --color-facebook: #1877f2;
            --color-twitter: #1da1f2;
            --color-linkedin: #0077b5;
            --color-whatsapp: #25d366;
            --color-email: #ea4335;
        }

        /* Container */
        .jd-container {
            width: 100%;
            min-height: 100vh;
            background-color: var(--color-background);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            color: var(--color-text);
        }

        /* Hero Section */
        .jd-hero {
            background: radial-gradient(circle at top left, var(--color-primary-lighter) 0%, transparent 50%),
                radial-gradient(circle at center right, #e6f0ff 0%, transparent 50%),
                radial-gradient(circle at bottom center, var(--color-primary-lighter) 0%, transparent 60%);
            padding: 2rem 1rem;
            border-bottom: 1px solid rgba(226, 232, 240, 0.5);
        }

        .jd-hero__content {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Job Header */
        .jd-job__header {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            max-width: 900px;
        }

        .jd-job__title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--color-text-dark);
            margin: 0;
            line-height: 1.2;
        }

        /* Enhanced Meta Icons */
        .jd-job__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .jd-job__meta-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--color-text);
            font-size: 0.95rem;
        }

        .jd-job__meta-icon-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: var(--radius-full);
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
            box-shadow: 0 2px 5px rgba(90, 65, 201, 0.2);
        }

        .jd-job__meta-icon {
            color: white;
            font-size: 1rem;
        }

        .jd-job__tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 0.5rem;
        }

        .jd-job__tag {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-full);
            font-size: 0.875rem;
            font-weight: 500;
            box-shadow: var(--shadow-sm);
        }

        .jd-job__tag--type {
            background-color: var(--color-primary-lighter);
            color: var(--color-primary-dark);
        }

        .jd-job__tag--salary {
            background-color: #e6f7f5;
            color: #0f766e;
        }

        .jd-job__tag--deadline {
            background-color: #fef3c7;
            color: #92400e;
        }

        .jd-job__tag-icon {
            font-size: 0.875rem;
        }

        /* Apply Card */
        .jd-apply-card {
            background-color: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            overflow: hidden;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
        }

        .jd-apply-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .jd-apply-card__header {
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
            color: white;
            padding: 1.25rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .jd-apply-card__icon {
            width: 42px;
            height: 42px;
            border-radius: var(--radius-full);
            background-color: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .jd-apply-card__title {
            font-size: 1.125rem;
            font-weight: 600;
            margin: 0;
        }

        .jd-apply-card__body {
            padding: 1.25rem;
        }

        .jd-apply-card__deadline {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-bottom: 1.25rem;
            margin-bottom: 1.25rem;
            border-bottom: 1px solid var(--color-border);
        }

        .jd-apply-card__deadline-icon {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-full);
            background-color: #fef3c7;
            color: #92400e;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .jd-apply-card__deadline-text {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .jd-apply-card__deadline-text span {
            font-size: 0.875rem;
            color: var(--color-text-light);
        }

        .jd-apply-card__deadline-text strong {
            font-size: 1.125rem;
            color: #92400e;
            font-weight: 600;
        }

        .jd-apply-card__actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .jd-apply-card__btn {
            width: 100%;
        }

        .jd-apply-card__btn-save {
            width: 100%;
        }

        /* Button Styles with Shining Animation */
        .jd-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            font-size: 0.95rem;
            font-weight: 500;
            border-radius: var(--radius-md);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            border: none;
            position: relative;
            overflow: hidden;
        }

        /* Shining animation effect */
        .jd-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            z-index: 1;
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% {
                left: -100%;
            }
            20%, 100% {
                left: 100%;
            }
        }

        .jd-btn--primary {
            background-color: var(--color-primary-dark);
            color: white;
        }

        .jd-btn--primary:hover {
            background-color: var(--color-primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(90, 65, 201, 0.25);
        }

        .jd-btn--outline {
            background-color: transparent;
            border: 1px solid var(--color-border);
            color: var(--color-text);
        }

        .jd-btn--outline:hover {
            background-color: var(--color-background);
            border-color: var(--color-text-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        .jd-btn--saved {
            background-color: var(--color-primary-lighter);
            color: var(--color-primary-dark);
            border: 1px solid var(--color-primary-lighter);
        }

        .jd-btn--saved:hover {
            background-color: var(--color-primary-lighter);
            color: var(--color-primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        .jd-btn__icon {
            font-size: 1rem;
            position: relative;
            z-index: 2;
        }

        /* Tabs Navigation */
        .jd-tabs {
            background-color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 10;
            border-bottom: 1px solid rgba(226, 232, 240, 0.7);
            transition: all 0.3s ease;
        }

        .jd-tabs__container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            position: relative;
            display: flex;
            align-items: center;
        }

        .jd-tabs__scroll-container {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
            flex: 1;
        }

        .jd-tabs__scroll-container::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

        .jd-tabs__list {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            min-width: max-content;
        }

        .jd-tabs__item {
            position: relative;
        }

        .jd-tabs__link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1.25rem 1.5rem;
            color: var(--color-text);
            text-decoration: none;
            font-size: 0.9375rem;
            font-weight: 500;
            transition: all 0.3s ease;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }

        .jd-tabs__link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-radius: 3px 3px 0 0;
        }

        .jd-tabs__link:hover {
            color: var(--color-primary-dark);
            background-color: rgba(115, 87, 235, 0.05);
        }

        .jd-tabs__link:hover::after {
            transform: scaleX(0.5);
        }

        .jd-tabs__link--active {
            color: var(--color-primary-dark);
            font-weight: 600;
            background-color: rgba(115, 87, 235, 0.08);
        }

        .jd-tabs__link--active::after {
            transform: scaleX(1);
            height: 4px;
            box-shadow: 0 0 8px rgba(115, 87, 235, 0.5);
        }

        .jd-tabs__icon {
            font-size: 1.125rem;
            transition: transform 0.3s ease;
        }

        .jd-tabs__link:hover .jd-tabs__icon {
            transform: translateY(-2px);
        }

        .jd-tabs__link--active .jd-tabs__icon {
            color: var(--color-primary-dark);
        }

        .jd-tabs__nav {
            display: none;
        }

        .jd-tabs__nav-btn {
            width: 36px;
            height: 36px;
            border-radius: var(--radius-full);
            background-color: var(--color-primary-lighter);
            border: none;
            color: var(--color-primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            margin: 0 0.25rem;
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }

        /* Add shining effect to nav buttons */
        .jd-tabs__nav-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            z-index: 1;
            animation: shine 3s infinite;
        }

        .jd-tabs__nav-btn:hover {
            background-color: var(--color-primary-dark);
            color: white;
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        @media (min-width: 768px) {
            .jd-tabs__container {
                padding: 0 2rem;
            }

            .jd-tabs__link {
                font-size: 1rem;
            }
            
            .jd-tabs__nav {
                display: flex;
            }
        }

        /* Banner Ad */
        .jd-banner-ad {
            background-color: white;
            padding: 1rem 0;
            border-bottom: 1px solid var(--color-border);
        }

        .jd-banner-ad__container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .jd-banner-ad__content {
            width: 100%;
            max-width: 720px;
            height: 90px;
            background-color: var(--color-background);
            border-radius: var(--radius-md);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .jd-banner-ad__content:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        /* Content */
        .jd-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        /* Layout */
        .jd-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 992px) {
            .jd-layout {
                grid-template-columns: 2fr 1fr;
            }
        }

        /* Section */
        .jd-section {
            margin-bottom: 3rem;
        }

        .jd-section--full {
            grid-column: 1 / -1;
        }

        .jd-section__header {
            margin-bottom: 1.5rem;
        }

        .jd-section__title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-text-dark);
            margin: 0 0 0.5rem;
        }

        .jd-section__subtitle {
            font-size: 0.875rem;
            color: var(--color-text-light);
        }

        /* Card */
        .jd-card {
            background-color: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            overflow: hidden;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .jd-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .jd-card__body {
            padding: 1.5rem;
        }

        /* Job Details */
        .jd-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .jd-details__row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .jd-details__row {
                grid-template-columns: 1fr 1fr;
            }
        }

        .jd-details__item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.25rem;
            border-radius: var(--radius-md);
            background-color: var(--color-background);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }

        .jd-details__item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            background-color: var(--color-primary-lighter);
        }

        .jd-details__icon-wrapper {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
            color: white;
            flex-shrink: 0;
            box-shadow: var(--shadow-sm);
        }

        .jd-details__icon {
            font-size: 1.25rem;
        }

        .jd-details__content {
            flex: 1;
        }

        .jd-details__label {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--color-text-light);
            margin: 0 0 0.375rem;
        }

        .jd-details__value {
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-text-dark);
            word-break: break-word;
        }

        /* Responsibilities */
        .jd-responsibilities {
            position: relative;
            padding: 1rem 0;
        }

        .jd-responsibilities__icon {
            position: absolute;
            top: -1rem;
            left: -0.5rem;
            font-size: 3rem;
            color: var(--color-primary);
            opacity: 0.2;
            z-index: 1;
        }

        .jd-responsibilities__content {
            position: relative;
            z-index: 2;
            font-size: 1rem;
            line-height: 1.8;
            color: var(--color-text);
        }

        .jd-responsibilities__content p {
            margin-bottom: 1rem;
        }

        .jd-responsibilities__content p:last-child {
            margin-bottom: 0;
        }

        /* Ad Container */
        .jd-ad-container {
            background-color: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            padding: 1rem;
            margin-bottom: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }

        .jd-ad-container:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .jd-ad-content {
            width: 100%;
            max-width: 720px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Sidebar */
        .jd-sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: relative;
        }

        /* Sticky sidebar elements */
        .jd-sticky-item {
            position: relative;
            z-index: 5;
        }

        .jd-sticky-container {
            position: sticky;
            top: 90px; /* Offset for tabs - adjust as needed */
            z-index: 4;
            margin-bottom: 2rem;
        }

        /* Share Card */
        .jd-share-card {
            background-color: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            overflow: hidden;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
        }

        .jd-share-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .jd-share-card__header {
            padding: 1.25rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            border-bottom: 1px solid var(--color-border);
        }

        .jd-share-card__icon {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-full);
            background-color: var(--color-primary-lighter);
            color: var(--color-primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .jd-share-card__title {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--color-text-dark);
            margin: 0;
        }

        .jd-share-card__body {
            padding: 1.25rem;
        }

        .jd-share-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        .jd-share-button {
            width: 42px;
            height: 42px;
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }

        /* Add shining effect to share buttons */
        .jd-share-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            z-index: 1;
            animation: shine 3s infinite;
            animation-delay: calc(var(--i, 0) * 0.5s);
        }

        .jd-share-button:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: var(--shadow-md);
        }

        .jd-share-button--facebook {
            background: linear-gradient(45deg, var(--color-facebook), #4893f5);
            --i: 0;
        }

        .jd-share-button--twitter {
            background: linear-gradient(45deg, var(--color-twitter), #6fc2ff);
            --i: 1;
        }

        .jd-share-button--linkedin {
            background: linear-gradient(45deg, var(--color-linkedin), #0099e5);
            --i: 2;
        }

        .jd-share-button--email {
            background: linear-gradient(45deg, var(--color-email), #ff5252);
            --i: 3;
        }

        .jd-share-button--whatsapp {
            background: linear-gradient(45deg, var(--color-whatsapp), #4aed88);
            --i: 4;
        }

        /* Job Alert Card */
        .jd-alert-card {
            background-color: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            overflow: hidden;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
        }

        .jd-alert-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .jd-alert-card__header {
            padding: 1.25rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            border-bottom: 1px solid var(--color-border);
        }

        .jd-alert-card__icon {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-full);
            background-color: #fef3c7;
            color: #92400e;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .jd-alert-card__title {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--color-text-dark);
            margin: 0;
        }

        .jd-alert-card__body {
            padding: 1.25rem;
        }

        .jd-alert-card__text {
            font-size: 0.95rem;
            color: var(--color-text);
            margin-bottom: 1.5rem;
        }

        .jd-form-group {
            margin-bottom: 1.25rem;
        }

        .jd-form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--color-text-dark);
            margin-bottom: 0.5rem;
        }

        .jd-input-wrapper {
            position: relative;
        }

        .jd-input,
        .jd-select {
            width: 100%;
            padding: 0.75rem 1rem;
            padding-right: 2.5rem;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            font-size: 0.95rem;
            color: var(--color-text-dark);
            background-color: white;
            transition: all 0.3s ease;
        }

        .jd-input:focus,
        .jd-select:focus {
            outline: none;
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px var(--color-primary-lighter);
        }

        .jd-input-icon {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--color-text-light);
            pointer-events: none;
        }

        .jd-alert-card__btn {
            width: 100%;
        }

        /* Sidebar Ads */
        .jd-sidebar-ads {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .jd-sidebar-ad {
            background-color: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            overflow: hidden;
            min-height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .jd-sidebar-ad:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .jd-sidebar-ad__content {
            width: 100%;
            text-align: center;
        }

        /* Sticky Sidebar Ad */
        .jd-sticky-ad {
            position: sticky;
            top: 90px; /* Adjust as needed */
        }

        /* Similar Jobs */
        .jd-similar-jobs {
            margin-top: 2rem;
        }

        .jd-similar-jobs__grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 640px) {
            .jd-similar-jobs__grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 992px) {
            .jd-similar-jobs__grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .jd-similar-jobs__more {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }

        /* Job Card */
        .jd-job-card {
            background-color: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            border: 1px solid var(--color-border);
            height: 100%;
        }

        .jd-job-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--color-primary-light);
        }

        .jd-job-card__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .jd-job-card__category {
            background-color: var(--color-primary-lighter);
            color: var(--color-primary-dark);
            padding: 0.375rem 0.75rem;
            border-radius: var(--radius-md);
            font-size: 0.75rem;
            font-weight: 600;
        }

        .jd-job-card__bookmark {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--color-text-light);
            font-size: 1.25rem;
            transition: all 0.3s ease;
        }

        .jd-job-card__bookmark:hover {
            color: var(--color-primary-dark);
            transform: translateY(-2px);
        }

        .jd-job-card__bookmark--saved {
            color: var(--color-primary-dark);
        }

        .jd-job-card__body {
            flex: 1;
            margin-bottom: 1.25rem;
        }

        .jd-job-card__title-link {
            text-decoration: none;
        }

        .jd-job-card__title {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--color-text-dark);
            margin: 0 0 1rem 0;
            line-height: 1.4;
            transition: all 0.3s ease;
        }

        .jd-job-card__title:hover {
            color: var(--color-primary-dark);
        }

        .jd-job-card__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .jd-job-card__meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: var(--color-text);
        }

        .jd-job-card__meta-icon {
            color: var(--color-primary-dark);
            font-size: 1rem;
        }

        .jd-job-card__footer {
            display: flex;
            justify-content: space-between;
            padding-bottom: 1rem;
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--color-border);
        }

        .jd-job-card__salary {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: var(--color-text);
            font-weight: 500;
        }

        .jd-job-card__salary-icon {
            color: #0f766e;
        }

        .jd-job-card__date {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: var(--color-text-light);
        }

        .jd-job-card__date-icon {
            color: var(--color-text-light);
        }

        .jd-job-card__actions {
            display: flex;
            justify-content: center;
        }

        .jd-job-card__apply {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background-color: var(--color-primary-dark);
            color: white;
            padding: 0.625rem 1.25rem;
            border-radius: var(--radius-md);
            font-size: 0.875rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        /* Add shining effect to apply button */
        .jd-job-card__apply::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            z-index: 1;
            animation: shine 3s infinite;
        }

        .jd-job-card__apply:hover {
            background-color: var(--color-primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(90, 65, 201, 0.25);
        }

        .jd-job-card__applied {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background-color: var(--color-background);
            color: var(--color-text);
            padding: 0.625rem 1.25rem;
            border-radius: var(--radius-md);
            font-size: 0.875rem;
            font-weight: 500;
            border: none;
            width: 100%;
            cursor: not-allowed;
        }

        /* Responsive Adjustments */
        @media (max-width: 576px) {
            .jd-job__title {
                font-size: 1.5rem;
            }
            
            .jd-job__meta {
                flex-direction: column;
                gap: 0.75rem;
            }
            
            .jd-job__tags {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
                margin-top: 0.5rem;
            }
            
            .jd-job__tag {
                width: 100%;
                justify-content: center;
                padding: 0.5rem 0.5rem;
                font-size: 0.75rem;
            }
            
            /* Make the deadline tag span full width */
            .jd-job__tag--deadline {
                grid-column: 1 / -1;
            }
            
            .jd-apply-card__actions {
                flex-direction: column;
            }
            
            .jd-share-buttons {
                gap: 0.75rem;
            }
            
            .jd-share-button {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }
        .jd-whatsapp-channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.jd-whatsapp-channel__name {
    font-weight: 600;
    font-size: 16px;
    color: #25D366;
    text-align: center;
}

.jd-whatsapp-channel__icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #25D366;
}
/* Popup Overlay */
.whatsapp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup Box */
.whatsapp-popup-box {
    background-color: #fff;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    position: relative;
    padding: 20px;
    animation: fadeIn 0.3s ease-in-out;
}

/* Close Button */
.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 24px;
    color: #888;
    cursor: pointer;
}

/* Inner Channel Styles */
.jd-whatsapp-channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-top: 10px;
}

.jd-whatsapp-channel__name {
    font-size: 25px;
    color: #25D366;
    font-weight: 700;
    font-family: sans-serif;
}

.jd-whatsapp-channel__icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #25D366;
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}