/* Basic loading spinner */
.job-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #000;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#job-loading {
    text-align: center;
    padding: 20px;
}
.location-icon::before {
    content: "";
    position: absolute;
    left: 10px; /* Adjust as needed */
    top: 50%;
    transform: translateY(-50%);
    width: 20px; /* Adjust based on icon size */
    height: 20px; /* Adjust based on icon size */
    background-image: url('icon-url'); /* Path to your icon */
    background-size: contain;
    background-repeat: no-repeat;
}
/* Career map Block */

.career-page-layout {
    display: flex;
    height: 100vh;
}

.career-left-sidebar {
   
}

.career-right-sidebar {
    width: 70%;
    background-color: #ffffff;
    padding: 20px;
    box-sizing: border-box;
    margin-left: 20px;
}

/* Dropdown Wrapper */
.dropdown-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

/* Dropdown */
.dropdown {
    width: 100%;
    margin-bottom: 10px; /* Space between dropdowns */
    z-index: 1;
    position: relative; /* Keep dropdowns in document flow */
}

.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 15px;
/*    background-color: #f1f1f1;*/
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
}

.dropdown-arrow {
    font-size: 12px;
    margin-left: 10px;
}

/* Dropdown Menu */
.dropdown-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: none; /* Initially hidden */
    width: 100%;
    background-color: white;
    border: 1px solid #ccc;
    border-top: none;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden; /* Ensure it doesn't push content yet */
    transition: max-height 0.3s ease; /* Animate dropdown opening */
}

.dropdown-menu.show {
    max-height: 300px; /* Set a max height so it will smoothly expand */
}

.dropdown-menu li {
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li input {
    margin-right: 10px;
}

.dropdown-menu li:hover {
    background-color: #f9f9f9;
}

/* Arrow Toggle */
.dropdown.open .dropdown-arrow {
    transform: rotate(180deg); /* Rotate arrow when dropdown is open */
}

/* Hover or Focus State */
.dropdown-toggle:hover,
.dropdown-toggle:focus {
    background-color: #e9e9e9;
    outline: none;
}
.job-map-info-box {
    position: relative;
    padding: 16px;
    min-width: 300px;
    background: #fff;
    border-radius: 20px;
    font-size: 16px;
    line-height: 1.5;
    margin-top: -8px;
}
/* Job left column */
.career-list-column {
    display: flex;
    flex-direction: column;
    height: 600px;
}
#jobs-list-items {
    background: none;
    border-radius: 0;
    flex: 1;
    padding: 0;
}

#jobs-list-items::-webkit-scrollbar {
    border-radius: 3px;
    width: 6px; /* Width of the scrollbar */
}

/* Track (the background of the scrollbar) */
#jobs-list-items::-webkit-scrollbar-track {
    background: #ccc; /* Color of the scrollbar track */
    border-radius: 3px;
}

/* Handle (the scrollbar thumb) */
#jobs-list-items::-webkit-scrollbar-thumb {
    background-color: #333; /* Color of the scrollbar thumb */
    border-radius: 3px;    /* Rounded edges of the thumb */
}

/* On hover */
#sjobs-list-items::-webkit-scrollbar-thumb:hover {
    background-color: #333; /* Darker color when hovering */
}

#jobs-list-items .job-item {
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    margin-bottom: 24px;
    padding: 0;
}

#jobs-list-items .job-item:last-child {
    margin-bottom: 0;
}

#jobs-list-items .job-item h3 {
    cursor: pointer;
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 12px;
}

#jobs-list-items .job-item p {
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 12px;
}

#jobs-list-items .job-item p:last-child {
    margin-bottom: 0;
}

#jobs-list-items .job-item .info-item {
    background-position: 0 2px;
    background-repeat: no-repeat;
    padding-left: 24px;
    position: relative;
}

#jobs-list-items .job-item .info-item svg {
    left: 0;
    position: absolute;
    top: 1px;
}


