/* Disable bookmark functionality - Hide any remaining bookmark elements */
.noo-btn-bookmark,
.bookmark-job-link,
.bookmark-job,
span[data-action="noo_bookmark_job"] {
    display: none !important;
}

/* Hide bookmark menu items in user menus */
a[href*="bookmark-job"] {
    display: none !important;
}

/* Hide bookmark related elements */
.noo-icon-tool.noo-btn-bookmark {
    display: none !important;
}

/* Hide grid view toggle button */
.noo-type-btn[href*="display=grid"],
a.noo-type-btn[href*="display=grid"] {
    display: none !important;
}

/* Hide any grid toggle buttons with fa-th-large icon */
.noo-type-btn .fa-th-large,
a[href*="display=grid"] .fa-th-large,
.fa-th-large {
    display: none !important;
}

/* Hide the entire grid toggle button container */
.noo-type-btn {
    display: none !important;
}

/* Clean up job listing display - Hide excessive information */
.content-meta .job-_postalcode,
.content-meta .job-experience_level,
.content-meta .job-year_experience {
    display: none !important;
}

/* Improve job meta display */
.content-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.content-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
}

/* Style job company */
.job-company {
    font-weight: 500;
    color: #333 !important;
}

.job-company a {
    color: #007cba !important;
    text-decoration: none;
}

.job-company a:hover {
    color: #005a87 !important;
}

/* Style job type */
.job-type a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: rgba(241, 78, 59, 0.1);
    color: #f14e3b !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

/* Style job date */
.job-date {
    color: #666 !important;
    font-size: 13px;
}

.job-date i {
    color: #999;
}

/* Style job category - show all categories on separate line */
.job-category {
    flex-basis: 100%;
    margin-top: 5px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.job-category a {
    color: #007cba !important;
    text-decoration: none;
    font-size: 13px;
    margin-right: 8px;
    padding: 2px 6px;
    background-color: rgba(0, 124, 186, 0.1);
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 4px;
}

.job-category a:hover {
    color: #005a87 !important;
    background-color: rgba(0, 124, 186, 0.2);
}

/* Style salary */
.job-salary {
    font-weight: 500;
    color: #28a745 !important;
}

.job-salary em {
    font-style: normal;
    font-weight: normal;
    color: #666;
}

/* Hide excessive dashicons */
.content-meta .dashicons {
    display: none !important;
}

/* Keep only essential icons */
.job-date .fa-calendar-alt,
.job-type .fa-bookmark {
    display: inline !important;
    margin-right: 5px;
    font-size: 12px;
    opacity: 0.7;
}

/* Hide keywords section on vacancy page */
.noo-search-html {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .job-category {
        max-width: 100%;
    }
}
