/* Codewing Job Manager Styles */
.cjm-job-board-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 16px;
    font-family: 'Inter', Arial, sans-serif;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(30, 41, 59, 0.06);
    animation: cjm-fadein 0.7s cubic-bezier(.4,0,.2,1);
}
@keyframes cjm-fadein {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: none; }
}
.cjm-job-board-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    align-items: center;
    background: none;
    padding: 24px 0 0 0;
    border-radius: 0;
    box-shadow: none;
}
.cjm-search-input {
    flex: 2 1 200px;
    padding: 14px 18px;
    border: 1.5px solid #e0e7ef;
    border-radius: 12px;
    font-size: 17px;
    background: #f8fafc;
    color: #222;
    outline: none;
    transition: border 0.2s;
}
.cjm-search-input:focus {
    border-color: #2563eb;
    background: #fff;
}
.cjm-job-board-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
    border-bottom: none;
    padding-bottom: 0;
    background: none;
}
.cjm-job-tab {
    background: #f5f6fa;
    border: none;
    border-radius: 24px;
    padding: 10px 28px;
    font-size: 16px;
    color: #222;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    font-weight: 500;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
.cjm-job-tab.active {
    background: #2563eb;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    transform: scale(1.04);
    z-index: 2;
}
.cjm-job-tab:hover:not(.active) {
    background: #e0e7ff;
    color: #3730a3;
}
.cjm-job-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.cjm-job-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(.4,0,.2,1), transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(30, 41, 59, 0.06);
    border-radius: 18px;
    background: #fff;
    border: none;
    padding: 28px 24px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}
.cjm-job-card.cjm-animate-in {
    opacity: 1;
    transform: translateY(0);
}
.cjm-job-card:hover {
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.13), 0 2px 12px rgba(30, 41, 59, 0.08);
    transform: translateY(-4px) scale(1.012);
}
.cjm-job-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.cjm-job-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: #18181b;
}
.cjm-job-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.cjm-badge {
    background: #f1f5f9;
    color: #222;
    font-size: 13px;
    border-radius: 16px;
    padding: 4px 14px;
    font-weight: 600;
    display: inline-block;
}
.cjm-badge-jobtime {
    background: #e0e7ff;
    color: #3730a3;
}
.cjm-job-card-body {
    margin-top: 6px;
}
.cjm-job-desc {
    color: #52525b;
    font-size: 15px;
    margin-bottom: 10px;
}
.cjm-job-meta-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 15px;
}
.cjm-job-meta {
    display: flex;
    align-items: center;
    gap: 4px;
}
.cjm-job-card-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}
.cjm-apply-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 10px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px rgba(37,99,235,0.10);
}
.cjm-apply-btn:hover {
    background: #1d4ed8;
    box-shadow: 0 4px 24px rgba(37,99,235,0.18);
    transform: scale(1.04);
}
.cjm-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}
.cjm-pagination-btn {
    background: #f5f6fa;
    border: 1.5px solid #e0e7ef;
    border-radius: 20px;
    min-width: 38px;
    height: 38px;
    padding: 0 14px;
    font-size: 17px;
    color: #222;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border 0.18s;
    font-weight: 500;
    outline: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cjm-pagination-btn.active {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
    font-weight: 700;
}
.cjm-pagination-btn:not(.active):hover:not(:disabled) {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}
.cjm-pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.cjm-no-jobs {
    text-align: center;
    color: #64748b;
    font-size: 17px;
    margin: 32px 0;
}
/* Responsive */
@media (max-width: 700px) {
    .cjm-job-board-wrapper {
        padding: 0 4px;
        border-radius: 12px;
    }
    .cjm-job-board-filters {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
        border-radius: 0;
        padding: 12px 4px 6px 4px;
    }
    .cjm-job-board-tabs {
        flex-wrap: wrap;
        gap: 6px;
        border-radius: 0;
    }
    .cjm-job-card {
        padding: 14px 4px 10px 4px;
        border-radius: 12px;
    }
    .cjm-job-title {
        font-size: 1.1rem;
    }
    .cjm-job-meta-row {
        font-size: 13px;
        gap: 10px;
    }
    .cjm-apply-btn {
        padding: 8px 16px;
        font-size: 14px;
        border-radius: 16px;
    }
}
.cjm-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin-right: 6px;
}
.cjm-icon svg {
    display: block;
    width: 1em;
    height: 1em;
}
.cjm-job-meta {
    align-items: center;
}
.cjm-job-tab-content {
    display: none;
}
.cjm-job-tab-content.active {
    display: block;
}