.two-line-cell .line-title {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 16px;
        font-weight: 600;
        color: #555;
    }
    .icon-start {
        font-size: 14px;
        color: #2ECC71;
        /* optional */
    }
    .two-line-cell .line-item {
        display: block;
        font-size: 14px;
        font-weight: 500;
        margin-left: 20px;
        margin-top: 4px;
        color: #2ECC71;
        /* aligns under text, not icon */
    }
    .activeStatus {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(59, 130, 246, 0.12);
        font-weight: 600;
        font-size: 0.85rem;
    }
    .activeStatus.active{
        color: #22c55e;
    }
    .activeStatus.expire {
        color: #FF0000;
    }
    .activeStatus.pause {
        color: #b45309;
    }
    .status-switch {
        margin-top: 10px;
        text-align: center;
        margin-left: 12px;
    }
    @media (max-width: 767px) {
        /* Mobile-only styles here */
        .status-switch {
            margin-left: 0px;
        }
        .edit-btn{
            margin-top: 10px;
        }
    }

    /* Country portal pills under job title */
    .country-pills-row {
        display: flex;
        gap: 6px;
        margin-top: 8px;
        margin-left: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding-bottom: 4px;
        scrollbar-width: thin;
        scrollbar-color: #D1D5DB transparent;
        max-width: 100%;
    }
    .country-pills-row::-webkit-scrollbar {
        height: 4px;
    }
    .country-pills-row::-webkit-scrollbar-track {
        background: transparent;
    }
    .country-pills-row::-webkit-scrollbar-thumb {
        background: #D1D5DB;
        border-radius: 2px;
    }
    .country-pill {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        flex-shrink: 0;
        padding: 3px 10px;
        border-radius: 999px;
        font-size: 11px;
        font-weight: 500;
        background: #E6F1FB;
        color: #0C447C;
        border: 1px solid #B5D4F4;
        text-decoration: none;
        transition: all 0.15s ease;
    }
    .country-pill:hover {
        background: #B5D4F4;
        color: #042C53;
        text-decoration: none;
    }
    .country-pill--canada {
        background: #FCEBEB;
        color: #791F1F;
        border-color: #F7C1C1;
    }
    .country-pill--canada:hover {
        background: #F7C1C1;
        color: #501313;
    }
    .country-pill__flag {
        font-size: 12px;
        line-height: 1;
    }
    .country-pill__name {
        font-size: 11px;
    }