/* Filter Bar */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "\25BC"; /* Unicode for down arrow */
    font-size: 10px;
    color: #005a87;
    position: absolute;
    right: 15px;
    bottom: 16px;
    pointer-events: none;
}
.manatal-filter-bar {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: flex-end;
    border: 1px solid #eee;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 200px;
    position: relative;
}

/* Styled Selects & Inputs */
.filter-group select, .filter-group input {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 46px;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    font-size: 15px;
    cursor: pointer;
}

/* DROPDOWN ARROW ICON */
.select-wrapper::after {
    content: "▼";
    font-size: 10px;
    color: #005a87;
    position: absolute;
    right: 15px;
    bottom: 16px;
    pointer-events: none;
}

.filter-submit {
    background: #005a87;
    color: #fff;
    border: none;
    padding: 0 30px;
    height: 46px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

/* Job List */

.manatal-list {
        max-width: 1200px;
        margin-left: auto !important;
        padding: 20px 40px;
        background: #fff;
        margin-right: auto !important;
    }
    
.job-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}
.job-info {
    width:75%;
}
.job-info h3 a {
    color: #005a87;
    text-decoration: none;
    font-weight: 700;
}

.job-meta {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 12px;
    font-weight: 500;
}

.job-action a {
    background: #005a87;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* Pagination */
.manatal-pagination {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.manatal-pagination a {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
}

.manatal-pagination a.current {
    background: #005a87;
    color: #fff;
}
.manatal-single-view {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #005a87;
    text-decoration: none;
    font-weight: bold;
}

.manatal-single-view h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.job-full-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
    margin-top: 30px;
}

.job-full-content h2, .job-full-content h3 {
    margin-top: 25px;
}

.apply-section {
    margin-top: 50px;
    text-align: center;
}

.apply-button {
    background: #005a87;
    color: #fff;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
}