.job-post-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 20px 0;
}

.job-post-list ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 280px;
    list-style: none;
    overflow-y: scroll;
    padding: 0;
    color: #2b2b2b;
    font-size: 16px;
    font-weight: 500;
}

.job-post-list ul li {
    cursor: pointer;
    border-radius: 8px;
    padding: 8px 16px;
}

.job-post-list ul li:hover {
    background-color: #90E0EF;
}

.activated {
    background-color: #0077B6;
    color: #FAFAFA;
}

/*-----Scroll bar-----*/
/* Style for thin scrollbar */
.job-post-list ul::-webkit-scrollbar {
    width: 5px; /* Adjust the width of the scrollbar */
}

.job-post-list ul::-webkit-scrollbar-track {
    background: #f1f1f1; /* Track color */
}

.job-post-list ul::-webkit-scrollbar-thumb {
    background: #888; /* Handle color */
}

.job-post-list ul::-webkit-scrollbar-thumb:hover {
    background: #555; /* Handle color on hover */
}

/* Style to disable pointer events on 'No post available' */
.job-post-list ul .no-posts {
    cursor: default;
    pointer-events: none;
}


/*-----Job Post Applicant List Request-----*/
.job-post-header {
    font-size: 24px;
    font-weight: 600;
    color: #2B2B2B;
    margin: 0 0 32px;
}

.job-post-applicant-list-requesting, .job-post-applicant-list-saved {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.05);
    background-color: #FAFAFA;
    margin: 0 0 20px;
}

/*applicant-list-requesting-table*/
.applicant-list-requesting-table, .applicant-list-saved-table {
    width: 100%;
    overflow-x: auto;
}

.applicant-list-requesting-table table, .applicant-list-saved-table table {
    width: 100%;
    white-space: nowrap;
    border-collapse: collapse;
}

.applicant-list-requesting-table table thead tr, .applicant-list-saved-table table thead tr {
    font-size: 12px;
    font-weight: 600;
    color: #707275;
    text-transform: uppercase;
    text-align: left;
    border-bottom-width: 1px;
    background-color: #f9fafb;
}

.applicant-list-requesting-table table thead tr th, .applicant-list-saved-table table thead tr th {
    padding: 12px 16px;
}

.applicant-list-requesting-table table tbody, .applicant-list-saved-table table tbody {
    background-color: #FFFFFF;
    border-top-width: 1px;
}

.applicant-list-requesting-table table tbody tr, .applicant-list-saved-table table tbody tr {
    color: #24262d;
    border-bottom-width: 1px;
    cursor: pointer;
}

.applicant-list-requesting-table table tbody tr:hover, .applicant-list-saved-table table tbody tr:hover {
    background-color: #CAF0F8;
}

.applicant-list-requesting-table table tbody tr td, .applicant-list-saved-table table tbody tr td {
    padding: 12px 16px;
    font-size: 14px;
}

.applicant-list-requesting-table table th,
.applicant-list-requesting-table table td,
.applicant-list-saved-table table th,
.applicant-list-saved-table table td{
    border: none;
    background-color: white;
}

.table-user-name {
   color: #2b2b2b;
   font-weight: 600;
}

.table-withdraw-method {
    color: #2b2b2b;
    font-weight: 500;
    text-transform: uppercase;
}

.table-withdraw-status {
    padding: 4px 8px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
}

.table-withdraw-status.approved {
    color: #046c4e;
    background-color: #def7ec;
}

.table-withdraw-status.pending {
    color: #b43403;
    background-color: #feecdc;
}

.table-withdraw-status.denied {
    color: #c81e1e;
    background-color: #fde8e8;
}

.table-withdraw-status.expired {
    color: #2b2b2b;
    background-color: #f4f5f7;
}

.applicant-list-requesting-table-pagination, .applicant-list-saved-table-pagination {
    display: flex;
    padding: 24px;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.table-pagination-btn {
    padding: 4px 8px !important;
    background-color: #1E73BE !important;
    border: 2px solid #1E73BE !important;
}

.table-pagination-btn:hover {
    background-color: #FAFAFA !important;
}

.table-pagination-btn:hover svg path {
    stroke: #1E73BE;
}

.table-pagination-number span{
    padding: 4px 8px;
    cursor: pointer;
}

.current-page {
    font-weight: 500;
    color: #FAFAFA;
    background-color: #1E73BE;
    border-radius: 8px;
}

.job-post-header-link {
    padding: 8px 16px !important;
    background-color: #3f83f8 !important;
    color: #fafafa !important;
    border-radius: 8px !important;
    outline: none !important;
}

.job-post-header-link:hover {
    background-color: #90E0EF !important;
}


.active-icon {
    fill: green;
}

.inactive-icon {
    fill: red;
}

.modal-btn-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: auto;
}

.modal-btn {
    padding: 4px 16px !important;
    border-radius: 8px !important;
    width: auto !important;
    height: 46px !important;
}

.modal-btn.delete {
    border: 2px solid #fde8e8 !important;
    color: #c81e1e !important;
    background-color: #fde8e8 !important;
    outline: none !important;
}

.modal-btn.cancel {
    border: none !important;
    color: #2b2b2b !important;
    background-color: transparent !important;
    outline: none !important;
}

.modal-btn.delete:hover {
    border: 2px solid #c81e1e !important;
}


/********** Applicant Percentage (Single Page) **********/
.applicant-pairing-percentage {
    max-width: 800px; /* Adjust as needed */
    margin: auto;
    border-collapse: collapse;
}

.applicant-pairing-percentage div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd; /* Row separator */
    padding: 8px;
}

.applicant-pairing-percentage div p,
.applicant-pairing-percentage div span {
    margin: 0;
    padding: 4px;
}

.applicant-pairing-percentage h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Adjustments for very small devices */
@media (max-width: 400px) {
    .applicant-pairing-percentage {
        padding: 0 10px; /* Add padding to avoid content touching the screen edges */
    }
    .applicant-pairing-percentage div {
        padding: 8px 4px; /* Adjust padding for tighter spaces */
    }
}

.progress-container {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px; /* Add margin to separate progress bars */
}

.progress-bar {
    height: 20px;
    background-color: #4caf50; /* Green color */
    text-align: center;
    line-height: 20px; /* Same as height, centers the text vertically */
    color: white;
    border-radius: 8px;
    transition: width 0.4s ease-in-out;
}
.employer-details-container {
    text-align: left;
}

.employer-details-title {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.employer-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding:8px;
}
.employer-detail p {
    margin: 0;
    padding: 4px;
}

.employer-detail-label {
    font-weight: bold;
    margin-right: 10px; /* Add some spacing between label and value */
}

.employer-detail-value {
    flex: 1; /* Grow to fill available space */
}

.employer-match-percentage {
    margin-top: 20px;
}

.no-details-message {
    text-align: center;
    margin-top: 20px;
}
.employer-match-percentage {
    margin-top: 20px;
    text-align: center; /* Add this line to center the content */
}
.language-detail {
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding: 8px;
}

.language-detail p {
    margin: 0;
    padding: 4px;
}

.language-detail-label {
    font-weight: bold;
    margin-right: 10px; /* Add some spacing between label and value */
}

.language-detail-value {
    flex: 1; /* Grow to fill available space */
}







