/* CK Job Posting Frontend Styles */

/* EXISTING STYLES - Keep all your current styles */
.ck-job-listings {
    display: grid;
    gap: 24px;
    padding: 20px 0;
}

.ck-jobs-two-columns {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.ck-jobs-single-column {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.ck-job-card {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ck-job-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.ck-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 0;
    border-bottom: none;
}

.ck-job-title-section {
    flex: 1;
}

.ck-job-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.ck-job-location,
.ck-job-department {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.ck-job-location svg,
.ck-job-department svg {
    color: #666;
    flex-shrink: 0;
}

.ck-job-salary-section {
    text-align: right;
}

.ck-job-salary {
    font-size: 22px;
    font-weight: 600;
    color: #083bba;
    line-height: 1;
    margin-bottom: 4px;
}

.ck-job-salary-label {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.ck-job-details {
    margin-bottom: 28px;
}

.ck-job-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.ck-job-detail-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ck-detail-label {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.ck-detail-value {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
}

.ck-status-available {
    color: #083bba;
}

.ck-status-filled {
    color: #999;
}

.ck-status-closed {
    color: #999;
}

.ck-job-benefits {
    margin-bottom: 28px;
    padding: 0;
    background: transparent;
    border-radius: 20px;
    padding: 10px;
}

.ck-benefits-label {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    text-transform: none;
    letter-spacing: 0;
    display: block;
    margin-bottom: 8px;
}

.ck-benefits-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ck-benefit-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 15px;
    color: #0066cc;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s;
}


.ck-modal { display: none; }
.ck-modal.active { display: flex !important; }



.ck-job-actions {
    display: flex;
    gap: 12px;
}

.ck-apply-btn {
    flex: 1;
    padding: 16px 24px;
    background: #083bba;
    color: white;
    border: 2px solid #083bba;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ck-apply-btn:hover {
    background: #ffffff;
    color: #083bba;
    border: 2px solid #083bba;
}

.ck-favorite-btn {
    padding: 16px 18px;
    background: white;
    border: 2px solid #e60000;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ck-favorite-btn:hover {
    background: #fff5f5;
}

.ck-favorite-btn svg {
    display: block;
    stroke: #e60000;
}

.ck-favorite-btn.favorited svg {
    fill: #e60000;
}

/* Modal Styles */
.ck-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    overflow-y: auto;
}

.ck-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ck-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ck-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f3f4f6;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #6b7280;
}

.ck-modal-close:hover {
    background: #e5e7eb;
    color: #111827;
}

.ck-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.ck-modal-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

.ck-modal-header p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

#ck-application-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ck-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ck-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ck-form-field.full-width {
    grid-column: 1 / -1;
}

.ck-form-field label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.ck-form-field input,
.ck-form-field select {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    color: #111827;
    transition: all 0.3s ease;
}

.ck-form-field input:focus,
.ck-form-field select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.ck-file-upload {
    margin-top: 4px;
}

.ck-upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.ck-upload-area:hover {
    border-color: #2563eb;
    background: #eff6ff;
}

.ck-upload-area svg {
    margin: 0 auto 12px;
    color: #6b7280;
}

.ck-upload-area p {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
}

.ck-upload-area span {
    font-size: 13px;
    color: #6b7280;
}

.ck-file-name {
    margin-top: 12px;
    padding: 10px 16px;
    background: #eff6ff;
    border-radius: 6px;
    font-size: 14px;
    color: #1e40af;
    display: none;
}

.ck-file-name.active {
    display: block;
}

.ck-submit-btn {
    padding: 16px 32px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.ck-submit-btn:hover {
    background: #1d4ed8;
}

.ck-submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.ck-form-disclaimer {
    font-size: 13px;
    color: #6b7280;
    text-align: center;
    line-height: 1.6;
    margin-top: 8px;
}

.ck-success-message {
    text-align: center;
    padding: 40px 20px;
}

.ck-success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.ck-success-message h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

.ck-success-message p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* ============================================
   NEW: FILTER PAGE STYLES
   ============================================ */

.ck-filter-page-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    padding: 20px 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* Filter Sidebar */
.ck-filter-sidebar {
    background: #f9fafb;
    border-radius: 12px;
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.ck-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.ck-filter-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.ck-clear-filters {
    background: none;
    border: none;
    color: #dc2626;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
}

.ck-clear-filters:hover {
    text-decoration: underline;
}

.ck-filter-group {
    margin-bottom: 20px;
}

.ck-filter-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.ck-filter-group input[type="text"],
.ck-filter-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #111827;
    background: white;
}

.ck-filter-group input[type="text"]:focus,
.ck-filter-group select:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.ck-search-btn {
    width: 100%;
    padding: 12px 20px;
    background: #fe0008;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease;
    margin-top: 24px;
}

.ck-search-btn:hover {
    background: #b91c1c;
}

/* Jobs Content Area */
.ck-jobs-content {
    min-height: 600px;
}

.ck-jobs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
}

.ck-jobs-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.ck-jobs-count svg {
    color: #6b7280;
}

.ck-sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ck-sort-wrapper label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.ck-sort-wrapper select {
    padding: 8px 32px 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #111827;
    background: white;
    cursor: pointer;
}

/* Jobs Grid */
.ck-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.ck-job-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.ck-job-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.ck-job-item-header {
    margin-bottom: 16px;
}

.ck-job-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.ck-job-item-salary {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.ck-salary-amount {
    font-size: 24px;
    font-weight: 700;
    color: #dc2626;
}

.ck-salary-period {
    font-size: 14px;
    color: #6b7280;
}

.ck-job-item-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.ck-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6b7280;
}

.ck-meta-item svg {
    flex-shrink: 0;
}

.ck-job-item-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.ck-detail-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ck-detail-group .ck-detail-label {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

.ck-detail-group .ck-detail-text {
    font-size: 14px;
    color: #111827;
    font-weight: 600;
}

.ck-job-item-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.ck-benefit-badge {
    padding: 4px 12px;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.ck-job-item-actions {
    display: flex;
    gap: 8px;
}

.ck-apply-now-btn {
    flex: 1;
    padding: 16px 24px;
    background:#083bba;
    color: white;
    border: 2px solid #083bba;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.ck-apply-now-btn:hover {
    background: #ffffff;
    color: #083bba;
    border: 2px solid #083bba;
}

.ck-favorite-icon,
.ck-share-icon {
    padding: 12px;
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ck-favorite-icon:hover,
.ck-share-icon:hover {
    background: #e5e7eb;
}

.ck-favorite-icon svg,
.ck-share-icon svg {
    display: block;
    color: #6b7280;
}

.ck-favorite-icon.favorited {
    background: #fef2f2;
}

.ck-favorite-icon.favorited svg {
    fill: #dc2626;
    stroke: #dc2626;
}

/* Pagination */
.ck-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.ck-pagination-inner {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ck-page-btn {
    padding: 10px 16px;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ck-page-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.ck-page-btn.ck-page-active {
    background: #083bba;
    color: white;
    border-color: #083bba;

}

.ck-page-prev,
.ck-page-next {
    font-weight: 600;
}

.ck-no-jobs {
    text-align: center;
    padding: 60px 20px;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px dashed #d1d5db;
}

.ck-no-jobs p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ck-filter-page-wrapper {
        grid-template-columns: 1fr;
    }

    .ck-filter-sidebar {
        position: static;
    }

    .ck-jobs-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .ck-jobs-two-columns {
        grid-template-columns: 1fr;
    }
    
    .ck-job-card {
        padding: 24px;
    }
    
    .ck-job-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 24px;
    }
    
    .ck-job-title {
        font-size: 24px;
    }
    
    .ck-job-salary {
        font-size: 20px;
    }
    
    .ck-job-salary-section {
        text-align: left;
    }
    
    .ck-job-detail-row {
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .ck-form-row {
        grid-template-columns: 1fr;
    }
    
    .ck-modal-content {
        padding: 30px 20px;
    }
    
    .ck-modal-header h2 {
        font-size: 24px;
    }

    /* Filter page responsive */
    .ck-jobs-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .ck-sort-wrapper {
        width: 100%;
    }

    .ck-sort-wrapper select {
        flex: 1;
    }

    .ck-jobs-grid {
        grid-template-columns: 1fr;
    }

    .ck-filter-sidebar {
        padding: 20px;
    }
}



.ck-share-popup a {
    display: block;
    margin: 5px 0;
    color: #0073aa;
    text-decoration: none;
}
.ck-share-popup a:hover {
    text-decoration: underline;
}











/* Single Job Page Styles */
.ck-single-job-page {
    max-width: 800px;
    margin: 150px auto;
    padding: 20px;
}

.ck-single-job-page .ck-job-card {

    background: #f5f5f5;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ck-single-job-page .ck-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 0;
    border-bottom: none;
}

.ck-single-job-page .ck-job-title-section {
    flex: 1;
}

.ck-single-job-page .ck-job-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.ck-single-job-page .ck-job-location,
.ck-single-job-page .ck-job-department {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.ck-single-job-page .ck-job-salary-section {
    text-align: right;
}

.ck-single-job-page .ck-job-salary {
    font-size: 22px;
    font-weight: 600;
    color: #083bba;
    line-height: 1;
    margin-bottom: 4px;
}

.ck-single-job-page .ck-job-salary-label {
    font-size: 14px;
    color: #666;
}

.ck-single-job-page .ck-job-details {
    margin-bottom: 28px;
}

.ck-single-job-page .ck-job-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.ck-single-job-page .ck-job-detail-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ck-single-job-page .ck-detail-label {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.ck-single-job-page .ck-detail-value {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
}

.ck-single-job-page .ck-job-benefits {
    margin-bottom: 28px;
    padding: 10px;
    background: transparent;
    border-radius: 20px;
}

.ck-single-job-page .ck-benefits-label {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    display: block;
    margin-bottom: 8px;
}

.ck-single-job-page .ck-benefits-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ck-single-job-page .ck-benefit-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 15px;
    color: #0066cc;
    font-weight: 400;
}

.ck-single-job-page .ck-apply-btn {
    padding: 16px 24px;
    background: #083bba;
    color: white;
    border: 2px solid #083bba;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto;
}

.ck-single-job-page .ck-apply-btn:hover {
    background: #ffffff;
    color: #083bba;
    border: 2px solid #083bba;
}

@media (max-width: 768px) {
    .ck-single-job-page .ck-job-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .ck-single-job-page .ck-job-salary-section {
        text-align: left;
    }
    
    .ck-single-job-page .ck-job-detail-row {
        grid-template-columns: 1fr;
    }
}



/* === register MODAL STYLES === */
.ck-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.ck-modal.active { display: flex !important; }

.ck-modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.ck-modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #fe0008;
    cursor: pointer;
}

.ck-modal-header h2 {
    margin: 0 0 12px 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.ck-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}
.ck-form-field {
    display: flex;
    flex-direction: column;
}
.ck-form-field label {
    margin-bottom: 6px;
    font-weight: 600;
}
.ck-form-field input,
.ck-form-field select {
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border 0.3s;
}
.ck-form-field input:focus,
.ck-form-field select:focus {
    outline: none;
    border-color: #083bba;
}

.ck-submit-btn {
    background: #083bba;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 8px;
    transition: background 0.3s;
}
.ck-submit-btn:hover {
    background: #ffffff !important;
    color: #fe0008 !important;
    border: 2px solid #fe0008 !important;
}
.ck-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.ck-success-message {
    text-align: center;
    padding: 20px;
}
.ck-success-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

/* === REGISTER BUTTON ON JOB CARD === */
.ck-register-btn {
    flex: 1;
    padding: 16px 24px;
    background: #fe0008;
    color: #ffffff;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ck-register-btn:hover {
    background: #ffffff !important;
    color: #fe0008 !important;
    border: 2px solid #fe0008 !important;
}



.ck-save-toggle {
    background: #ffffff;
    border: 2px solid #fe0008;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.ck-save-toggle:hover {
    border-color: #fe0008;
    background: #fef2f2;
    transform: scale(1.05);
}

.ck-save-toggle svg {
    width: 18px;
    height: 18px;
    fill: #fe0008;
    stroke: #fe0008;
}    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}


.ck-save-toggle svg {
    width: 18px;
    height: 18px;
    fill: #dc2626;
    stroke: #dc2626;
}

.ck-dashboard-btn {
    background: #083bba;
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.ck-dashboard-btn:hover {
    background: #ffffff !important;
    color: #083bba !important;
    border: 1px solid #083bba !important;
}



/* Compact Job Cards */
.ck-job-item-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
}

/* Responsive: 2 columns on tablet */
@media (max-width: 992px) {
    #ck-jobs-container.ck-jobs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Responsive: 1 column on mobile */
@media (max-width: 576px) {
    #ck-jobs-container.ck-jobs-grid {
        grid-template-columns: 1fr !important;
    }
}


.ck-header-btn {
    display: inline-block;
    padding: 12px 16px;
    background: #083bba;
    color: white;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.ck-header-btn:hover {
    background: white;
    color: #083bba;
    border: 2px solid #083bba;
}
/* Hours and Positions badges - styled like location/department */
.ck-job-hours,
.ck-job-positions {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.ck-job-hours svg,
.ck-job-positions svg {
    color: #666;
    flex-shrink: 0;
}



/* Responsive Pagination Fix */
.ck-pagination-inner {
    flex-wrap: wrap; /* Allow wrapping */
}

/* Responsive Job Grid for Filter Page */
@media (max-width: 1200px) {
    .ck-jobs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .ck-jobs-grid {
        grid-template-columns: 1fr !important; /* Single column on mobile */
    }
    
    .ck-pagination-inner {
        gap: 4px; /* Tighter spacing on mobile */
    }
    
    .ck-page-btn {
        padding: 8px 12px !important; /* Smaller buttons */
        font-size: 13px !important;
    }
}