
body {
    background-color: #d9f0ff;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}
.copy-jobid-wrapper {
    display: inline-block;
    margin-left: 10px;
    font-size: 0.9rem;
}

.copy-jobid {
    color: #0d6efd;
    text-decoration: none;
}

    .copy-jobid:hover {
        text-decoration: underline;
    }

/* Page Heading */
.section-title {
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 10px;
    color: #222;
}

.result-info {
    text-align: center;
    font-size: 15px;
    color: #555;
    margin-bottom: 35px;
}

/* Job Card */
.job-card {
    border: none;
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 28px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    position: relative;
}

    .job-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.1);
        background: linear-gradient(180deg, #ffffff, #f9fbff);
    }

.bookmark {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 22px;
    color: #bbb; /* default grey for non-bookmarked */
    transition: color 0.3s ease;
}

    .bookmark:hover {
        color: var(--primary); /* blue on hover for non-bookmarked */
    }

    .bookmark.active {
        color: var(--primary); /* always blue for bookmarked */
    }

/* Job Header */
.job-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.job-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid #eee;
    margin-right: 20px;
    background: #fff;
    padding: 6px;
    transition: transform 0.3s ease;
}

    .job-logo:hover {
        transform: scale(1.05);
    }

.job-title {
    font-weight: 700;
    font-size: 20px;
    color: #222;
}

.job-company {
    font-size: 14px;
    color: var(--secondary);
}

/* Job Meta */

.job-meta span {
    font-size: 14px;
    color: #555;
    background: #f1f6ff;
    padding: 6px 12px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-meta i {
    color: var(--primary);
    font-size: 15px;
}

/* Skills as Chips */
.skills-wrapper {
    margin-top: 12px;
}

.skill-chip {
    display: inline-block;
    background: #eaf2ff;
    padding: 4px 10px;
    font-size: 13px;
    border-radius: 20px;
    margin: 3px 6px 3px 0;
    color: #0056b3;
}

.job-meta {
    font-size: 0.9rem;
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #f1f3f5;
    color: #495057;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
}

    .meta-chip i {
        font-size: 0.95rem;
        color: var(--primary);
    }

/* Description */
.job-desc {
    margin-top: 14px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.view-more {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    margin-left: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .view-more:hover {
        background-color: #0056b3;
        text-decoration: none;
        color: #fff;
    }

/* Filters */
.filter-section {
    background: #fff;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

    .filter-section h6 {
        font-weight: 700;
        color: var(--primary);
    }

.form-label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary, .btn-outline-primary {
    border-radius: 30px;
    font-weight: 600;
}

/* Top controls */
.list-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.sort-select {
    width: auto;
    font-size: 14px;
}

/* Responsive */
@media(max-width: 992px) {
    .filter-section {
        position: static;
        margin-bottom: 20px;
    }

    .list-controls {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}
/* Page Header */
.page-header {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 12px 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.header-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.pagination-wrapper {
    display: flex;
    justify-content: center; /* centers the children horizontally */
    flex-wrap: wrap;
    gap: 6px; /* spacing between page numbers */
    margin-top: 20px;
}

    .pagination-wrapper .page-link {
        display: inline-block;
        padding: 8px 14px;
        color: #fff !important; /* force white numbers */
        background-color: #0d6efd; /* blue background for all links */
        border: 1px solid #0d6efd;
        border-radius: 5px;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s;
        font-weight: 500;
    }

        .pagination-wrapper .page-link:hover {
            background-color: #0b5ed7; /* darker blue on hover */
            color: #fff; /* keep numbers white */
            border-color: #0b5ed7;
        }

        .pagination-wrapper .page-link.active {
            background-color: #0b5ed7; /* darker blue for active page */
            color: #fff;
            border-color: #0b5ed7;
        }

.page-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

    .page-header h2 {
        margin: 0;
        font-size: 28px;
        font-weight: 700;
    }

