@charset "utf-8";
/* CSS Document */
.detail-wrapper {
            max-width: 1100px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        /* Top Header Company Section */
        .company-header-compact {
            background: #ffffff;
            border-radius: 12px;
            padding: 1.5rem 2rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            border: 1px solid #e5e7eb;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            margin-bottom: 1.5rem;
        }

        .company-header-compact img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            border-radius: 8px;
            border: 1px solid #f3f4f6;
            padding: 4px;
        }

        .company-header-info h1 {
            font-size: 1.4rem;
            margin: 0 0 0.35rem 0;
            color: #111827;
            font-weight: 700;
        }

        /* Location Styling */
        .company-location {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            color: #4b5563;
            font-size: 0.95rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .company-location i {
            color: #ef4444;
        }

        .company-badges {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .badge-verified {
            background: #e0f2fe;
            color: #0284c7;
            font-size: 0.85rem;
            padding: 0.25rem 0.6rem;
            border-radius: 20px;
            font-weight: 600;
        }

        .badge-status.active {
            background: #dcfce7;
            color: #15803d;
            font-size: 0.85rem;
            padding: 0.25rem 0.6rem;
            border-radius: 20px;
            font-weight: 600;
        }

        .badge-status.inactive {
            background: #fee2e2;
            color: #b91c1c;
            font-size: 0.85rem;
            padding: 0.25rem 0.6rem;
            border-radius: 20px;
            font-weight: 600;
        }

        /* Job Info Card */
        .job-summary-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 1.5rem 2rem;
            border: 1px solid #e5e7eb;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
        }

        .job-details-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
            align-items: center;
        }

        @media (max-width: 992px) {
            .job-details-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .job-details-grid {
                grid-template-columns: 1fr;
            }
        }

        .job-detail-box {
            background: #f9fafb;
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #f3f4f6;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .job-detail-box label {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #6b7280;
            font-weight: 600;
            margin-bottom: 0.35rem;
        }

        .job-detail-box label i {
            color: #0284c7;
            font-size: 0.9rem;
        }

        .job-detail-box span {
            font-size: 1.05rem;
            font-weight: 600;
            color: #111827;
        }

        /* Apply Action Container Grid Alignment */
        .action-box-cell {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            height: 100%;
        }

        @media (max-width: 992px) {
            .action-box-cell {
                justify-content: start;
            }
        }

        /* Green Apply Button */
        .btn-telegram-apply {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            background-color: #27ae60;
            color: #ffffff !important;
            font-size: 1.05rem;
            font-weight: 600;
            padding: 0.85rem 1.75rem;
            border-radius: 12px;
            text-decoration: none;
            box-shadow: 0 8px 16px -4px rgba(39, 174, 96, 0.4);
            transition: all 0.25s ease;
            border: none;
            cursor: pointer;
            width: 100%;
        }

        .btn-telegram-apply:hover {
            background-color: #219653;
            transform: translateY(-2px);
            box-shadow: 0 12px 20px -4px rgba(39, 174, 96, 0.5);
        }

        .btn-telegram-apply .icon-box {
            background: rgba(255, 255, 255, 0.2);
            width: 28px;
            height: 28px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-disabled-expired {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background-color: #9ca3af;
            color: #ffffff;
            font-size: 1.05rem;
            font-weight: 600;
            padding: 0.85rem 1.75rem;
            border-radius: 12px;
            cursor: not-allowed;
            border: none;
            width: 100%;
        }

        /* Social Share Strip */
        .share-strip-container {
            background: #ffffff;
            border-radius: 12px;
            padding: 1rem 1.5rem;
            border: 1px solid #e5e7eb;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .share-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: #374151;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .share-title i {
            color: #0284c7;
        }

        .share-buttons {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }

        .share-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.5rem 0.9rem;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #ffffff !important;
            text-decoration: none;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
        }

        .share-btn:hover {
            transform: translateY(-2px);
            opacity: 0.9;
        }

        .share-whatsapp { background-color: #25d366; }
        .share-facebook { background-color: #1877f2; }
        .share-twitter  { background-color: #000000; }
        .share-linkedin { background-color: #0a66c2; }
        .share-telegram { background-color: #229ed9; }
        .share-copy     { background-color: #4b5563; }

        @media (max-width: 640px) {
            .share-strip-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .share-buttons {
                width: 100%;
                justify-content: space-between;
            }
            .share-btn span {
                display: none; /* Icon-only on mobile for compact layout */
            }
            .share-btn {
                padding: 0.6rem 0.8rem;
            }
        }

        /* Job Description Section */
        .job-description-box {
            background: #ffffff;
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid #e5e7eb;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            line-height: 1.8;
            color: #374151;
        }

        .job-description-box h2 {
            font-size: 1.3rem;
            margin-top: 0;
            color: #111827;
            border-bottom: 2px solid #f3f4f6;
            padding-bottom: 0.75rem;
            margin-bottom: 1.25rem;
        }

        /* Dynamically Formatted Description Styles */
        .job-description-content h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1f2937;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .job-description-content p {
            margin-bottom: 1rem;
        }

        .job-description-content ul, 
        .job-description-content ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }

        .job-description-content li {
            margin-bottom: 0.35rem;
        }
