* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

body {
    background-color: #f5f5f8;
    padding: 20px;
}

.jobport_container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    max-width: 1440px;
    margin: 0 auto;
}

.jobport_filters {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.jobport_filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.jobport_reset-all {
    color: #088825;
    text-decoration: none;
    font-size: 14px;
}

.jobport_filter-section {
    margin-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 16px;
}

.jobport_filter-section:last-child {
    border-bottom: none;
}

.jobport_filter-section h3 {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.jobport_filter-section h3::after {
    content: '▼';
    font-size: 12px;
    color: #666;
    transition: transform 0.3s ease;
}

.jobport_filter-section.collapsed h3::after {
    transform: rotate(-90deg);
}

.jobport_checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    accent-color: #088825;
}

.jobport_checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
    font-size: 14px;
    cursor: pointer;
}

.jobport_checkbox-group input[type="checkbox"] {
    width: 14px;
    height: 14px;
    border: 2px solid #ddd;
    border-radius: 4px;
}

/* Main catergory checkbox */
.jobport_main-checkbox {
    display: flex;
    flex-direction: column;
    gap: 12px;
    accent-color: #088825;
}

.jobport_main-checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
    font-size: 14px;
    cursor: pointer;
}

.jobport_main-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    vertical-align: middle;
    border: 4px solid #ddd;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.jobport_main-checkbox input[type="checkbox"]:checked {
    background-color: #ddd;
    border-color: #088825;
}
/* Main catergory checkbox */

.jobport_salary-range {
    padding: 0 8px;
    accent-color: #088825;
}

.jobport_salary-inputs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.jobport_salary-input {
    width: 80px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.jobport_search-section {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.jobport_search-bar {
    flex: 1;
    display: flex;
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.jobport_search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 12px;
    font-size: 14px;
}

.jobport_location-select {
    flex: 0.4;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    color: #444;
}

.jobport_search-button {
    padding: 16px 24px;
    background: #1C941C;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.jobport_results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.jobport_sort-by {
    color: #666;
    font-size: 14px;
}

.jobport_search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.jobport_job-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 3px 3px 15px 0px rgba(0, 0, 0, 0.25);
    position: relative;
    gap: 26px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.jobport_job-card:hover {
    border: 1px solid #088825;
    /* Light border on hover */
}


.jobport_job-card .jobport_bookmark {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    color: #666;
}

/* Add this to your style.css */
.jobport_job-card.clicked {
    border: 1px solid #088825;
    /* Example border style */
    box-shadow: 0 0 5px #088825;
    /* Glow effect */
    transition: box-shadow 0.3s ease;
    /* Smooth transition */
    border-radius: 12px;
    /* Rounds the corners of the card */
}

.jobport_job-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.jobport_company-logo {
    width: 54px;
    height: 54px;
    padding: 8px 4.069px 7.483px 4px;
    background: #f0f0f0;
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    margin-right: 12px;

}

.jobport_job-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.jobport_company-name {
    color: #666;
    font-size: 14px;
}

.jobport_tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.jobport_tag {
    padding: 4px 12px;
    background: #f5f5f8;
    border-radius: 16px;
    font-size: 12px;
    color: #444;
}

.jobport_salary {
    color: #088825;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.jobport_salary svg {
    width: 16px;
    height: 16px;
}

.jobport_time {
    color: #666;
    font-size: 12px;
    margin-top: 4px;
}

.jobport_pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.jobport_pagination button {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    color: #666;
}

.jobport_pagination button.active {
    background: #088825;
    color: white;
    border-color: #088825;
}

.jobport_see-more {
    color: #088825;
    font-size: 14px;
    cursor: pointer;
    margin-top: 8px;
}

.jobport_details {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    display: none;
    /* Initially hidden */
}

.jobport_details h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.jobport_details p {
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
}

.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    /* Adjust blur intensity as needed */
    z-index: 999;
    /* Behind the popup */
    display: none;
    /* Hidden by default */
}

.jobport_popup {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 50%;
    right: 0;
    width: 550px;
    height: 100%;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
    z-index: 1000;
    /* Above the blur */
    overflow-y: auto;
    padding: 20px;
    border-radius: 12px;

}

.jobport_popup-logo {
    width: 54px;
    height: 54px;
    padding: 8px 4px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    margin-bottom: 12px;
}

.jobport_job-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.jobport_job-info {
    margin-left: 12px;
}

.jobport_popup-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.jobport_popup-branch {
    font-size: 14px;
}

.jobport_share {
    position: absolute;
    top: 10px;
    right: 60px;
    /* Adjust as needed */
    font-size: 20px;
    color: #666;
    /* Default color */
    cursor: pointer;
}

.jobport_share:hover {
    color: #088825;
    /* Change color on hover */
    transform: scale(1.2);
    /* Slightly increase size on hover */
}

.jobport_popup-description {
    max-height: 110px;
    /* Adjust this value to show approximately 5 lines */
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.jobport_popup-content {
    position: relative;
}

.jobport_close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    /* Default color */
    transition: color 0.3s ease, transform 0.3s ease;
    /* Smooth transition for hover effects */
}

.jobport_close:hover {
    color: #f9513d;
    /* Change color on hover */
    transform: scale(1.2);
    /* Slightly increase size on hover */
}

.jobport_apply-button {
    background-color: #088825;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 20px;
    gap: 10px;
}

.jobport_popup-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jobport_popup-row {
    display: flex;
    justify-content: space-between;
}

.jobport_popup-column {
    flex: 1;
    padding: 10px;
}

.jobport_popup-column p {
    margin: 0;
    color: #000000;
    font-size: 14px;
}