   .header {
            background-color: #0056b3;
            color: white;
            padding: 15px 0;
            margin-bottom: 30px;
            
        }

        .loadmore-item {
            background: white;
            margin-bottom: 20px;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .loadmore-item:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(-3px);
            background-color: #eeeaea;
        }

        .job-details-link {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .loop-item-wrap {
            padding: 20px;
            position: relative;
        }

        .item-featured {
            float: left;
            width: 100px;
            height: 100px;
            margin-right: 20px;
            border-radius: 5px;
            overflow: hidden;
        }

        .item-featured img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .loop-item-content {
            overflow: hidden;
        }

        .loop-item-title {
            margin-top: 0;
            margin-bottom: 10px;
            font-size: 1.25rem;
            font-weight: 600;
        }

        .loop-item-title a {
            color: #0056b3;
            text-decoration: none;
        }

        .loop-item-title a:hover {
            color: #003d7a;
        }

        .content-meta {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .job-location a {
            color: #666;
            text-decoration: none;
            margin-right: 5px;
        }

        .job-location a:hover {
            color: #0056b3;
        }

        .job-date {
            margin-left: 15px;
        }

        .job-tools {
            margin-top: 15px;
        }

        .noo-icon-tool {
            display: inline-block;
            margin-right: 15px;
            color: #666;
            cursor: pointer;
            position: relative;
            z-index: 2;
        }

        .noo-icon-tool:hover {
            color: #0056b3;
        }

        .noo-icon-tool i {
            margin-right: 5px;
        }

        .noo-social-share {
            display: none;
            position: absolute;
            background: white;
            padding: 10px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 10;
            width: 200px;
        }

        .noo-tool-share:hover .noo-social-share {
            display: block;
        }

        .noo-social-share a {
            display: inline-block;
            margin: 0 5px;
            color: #666;
            font-size: 1.1rem;
        }

        .noo-social-share a:hover {
            color: #0056b3;
        }

        .show-view-more {
            clear: both;
            padding-top: 15px;
            text-align: right;
        }

        .job-date-ago {
            color: #999;
            font-size: 0.85rem;
            margin-left: 15px;
        }

        .search-filter {
            background: white;
            padding: 20px;
            border-radius: 5px;
            margin-bottom: 30px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .pagination {
            justify-content: center;
            margin-top: 30px;
        }

        @media (max-width: 768px) {
            .item-featured {
                float: none;
                margin-bottom: 15px;
            }

            .loop-item-content {
                width: 100% !important;
                padding-left: 0 !important;
            }

            .show-view-more {
                text-align: left;
                margin-top: 15px;
            }
        }
