/* --- UNIFIED 1200px PAGE CONTAINER --- */
.job-tracker-container,
.tool-container,
.jt-container,
.jt-main .container {
    max-width: 1200px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    box-sizing: border-box !important;
}

/* --- MAIN & HERO SECTION --- */
.jt-main,
.job-tracker-main {
    display: block;
    flex: none;
    min-height: 0;
    padding-bottom: 40px;
}

.tool-hero,
.jt-hero {
    text-align: center;
    padding-top: 48px;
    padding-bottom: 32px;
    margin-top: 0;
    position: relative;
    width: 100%;
}

.tool-hero-inner,
.jt-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.tool-hero-badge,
.jt-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary, #0066FF);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 102, 255, 0.15);
}

.tool-hero-title,
.jt-hero-heading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.8px;
    color: var(--text-main, #0f172a);
    margin: 0 0 10px;
    text-align: center;
}

.tool-hero-accent,
.jt-hero-accent {
    background: linear-gradient(135deg, var(--primary, #0066FF) 0%, #00b4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tool-hero-desc,
.jt-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--text-secondary, #475569);
    max-width: 640px;
    margin: 0 auto;
}

/* --- COMPACT METRICS BAR --- */
.jt-metrics-section {
    padding: 0 0 24px;
}

.jt-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.jt-metric-card {
    background: #ffffff;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 110px;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-sizing: border-box;
}

.jt-metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.08);
    border-color: rgba(0, 102, 255, 0.25);
}

.jt-metric-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.jt-metric-label {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-secondary, #475569);
}

.jt-metric-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-blue { background: rgba(0, 102, 255, 0.08); color: #0066FF; }
.icon-sky { background: rgba(2, 132, 199, 0.08); color: #0284c7; }
.icon-amber { background: rgba(217, 119, 6, 0.08); color: #d97706; }
.icon-emerald { background: rgba(5, 150, 105, 0.08); color: #059669; }
.icon-purple { background: rgba(147, 51, 234, 0.08); color: #9333ea; }

.jt-metric-value,
.jt-metric-val {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main, #0f172a);
    line-height: 1;
    letter-spacing: -0.5px;
}

/* --- WORKSPACE SECTION --- */
.jt-workspace-section {
    padding: 4px 0 20px;
}

.jt-controls-card,
.jt-workspace-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.jt-workspace-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.jt-workspace-title {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.jt-workspace-subtitle {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.jt-controls-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.jt-controls-right,
.jt-workspace-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- TOOLBAR --- */
.jt-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

/* View Switcher */
.jt-view-toggle,
.jt-view-switcher {
    display: inline-flex;
    gap: 2px;
    background: #f1f5f9;
    padding: 3px;
    border-radius: 8px;
}

.jt-toggle-btn,
.jt-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.jt-view-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Search Box */
.jt-search-box {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.jt-search-box svg {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.jt-search-input {
    width: 100%;
    padding: 7px 10px 7px 32px;
    font-family: inherit;
    font-size: 12.5px;
    color: var(--text-main);
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.jt-search-input:focus {
    outline: none;
    background: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.08);
}

/* Filter Dropdown */
.jt-filter-select,
.jt-select-filter {
    padding: 7px 12px;
    font-family: inherit;
    font-size: 12.5px;
    color: var(--text-main);
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.jt-select-filter:focus {
    border-color: var(--primary);
}

/* Buttons */
.jt-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 3px 10px rgba(0, 102, 255, 0.2);
}

.jt-btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(0, 102, 255, 0.3);
}

.jt-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(0, 102, 255, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.jt-btn-secondary:hover {
    background: rgba(0, 102, 255, 0.12);
    border-color: var(--primary);
}

/* --- KANBAN BOARD VIEW --- */
.jt-kanban-container,
.jt-kanban-grid,
.jt-kanban-board {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    align-items: start;
    min-height: 440px;
    overflow-x: auto;
}

.jt-kanban-col,
.jt-col {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.jt-col.drag-over {
    background: rgba(0, 102, 255, 0.04);
    border-color: var(--primary);
    border-style: dashed;
}

.jt-col-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px 10px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 10px;
}

.jt-col-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.jt-col-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.jt-col-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
}

.jt-col-count {
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 100px;
    background: #e2e8f0;
    color: var(--text-secondary);
}

/* Specific Header Badges */
.col-saved .jt-col-title { color: #475569; }
.col-applied .jt-col-title { color: #0284c7; }
.col-interviewing .jt-col-title { color: #d97706; }
.col-offer .jt-col-title { color: #059669; }
.col-rejected .jt-col-title { color: #dc2626; }

.jt-col-dropzone,
.jt-col-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.jt-col-empty {
    text-align: center;
    padding: 24px 8px;
    font-size: 11.5px;
    color: #94a3b8;
    font-style: italic;
    background: white;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    margin: auto 0;
}

/* --- JOB CARDS --- */
.jt-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px;
    cursor: grab;
    transition: all 0.2s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
    position: relative;
}

.jt-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}

.jt-card:active {
    cursor: grabbing;
}

.jt-card.dragging {
    opacity: 0.4;
    border: 1.5px dashed var(--primary);
    background: rgba(0, 102, 255, 0.02);
}

.jt-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 6px;
}

.jt-card-company {
    font-family: 'Sora', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.jt-card-role {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.jt-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.jt-card-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.jt-card-meta-item svg {
    color: #94a3b8;
    flex-shrink: 0;
}

.jt-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
}

/* Status Badges */
.jt-badge-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-saved { background: #f1f5f9; color: #475569; border: 1px solid #cbd5e1; }
.status-applied { background: #e0f2fe; color: #0284c7; border: 1px solid #bae6fd; }
.status-interviewing { background: #fef3c7; color: #d97706; border: 1px solid #fde68a; }
.status-offer { background: #d1fae5; color: #059669; border: 1px solid #a7f3d0; }
.status-rejected { background: #ffe4e6; color: #dc2626; border: 1px solid #fecdd3; }

/* Card Action Menu */
.jt-card-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.jt-btn-icon {
    background: transparent;
    border: none;
    padding: 3px 5px;
    color: #94a3b8;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.jt-btn-icon:hover {
    color: var(--text-main);
    background: #f1f5f9;
}

.jt-btn-icon.danger:hover {
    color: #dc2626;
    background: #ffe4e6;
}

/* Move Status Quick Select (Mobile/Fallback) */
.jt-select-move {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 4px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: #f8fafc;
    color: var(--text-secondary);
    cursor: pointer;
}

/* --- TABLE LIST VIEW --- */
.jt-table-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
}

.jt-table-container,
.jt-table-scroll,
.jt-table-wrapper {
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.jt-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 12.5px;
}

.jt-table th {
    background: #f8fafc;
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e2e8f0;
}

.jt-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-main);
    vertical-align: middle;
}

.jt-table tr:last-child td {
    border-bottom: none;
}

.jt-table tr:hover td {
    background: #f8fafc;
}

.jt-table-company {
    font-weight: 700;
    color: var(--text-main);
}

.jt-table-role {
    font-weight: 600;
    color: var(--primary);
}

.jt-table-empty {
    text-align: center;
    padding: 32px 14px;
    color: #94a3b8;
    font-style: italic;
}

.text-right {
    text-align: right;
}

/* --- GLOBAL EMPTY STATE --- */
.jt-empty-card,
.jt-global-empty {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin-top: 64px !important;
    margin-bottom: 64px !important;
    padding: 48px 24px !important;
    background: #ffffff !important;
    border: 1.5px dashed #cbd5e1 !important;
    border-radius: 20px !important;
    gap: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.jt-empty-icon,
.jt-empty-icon-box {
    width: 64px !important;
    height: 64px !important;
    border-radius: 16px !important;
    background: rgba(0, 102, 255, 0.08) !important;
    color: var(--primary, #0066FF) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
    flex-shrink: 0 !important;
}

.jt-empty-title,
.jt-empty-heading {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.jt-empty-sub,
.jt-empty-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
    max-width: 420px;
    margin: 0;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .jt-metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .jt-metrics-grid {
        grid-template-columns: 1fr;
    }
    .jt-controls-left {
        flex-direction: column;
        align-items: stretch;
    }
    .jt-filter-select,
    .jt-select-filter {
        width: 100%;
    }
    .jt-controls-right,
    .jt-workspace-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* --- MODAL OVERLAY & CARD --- */
.jt-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 17, 32, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.jt-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.jt-modal-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 560px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(10px);
    transition: transform 0.25s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.jt-modal-overlay.open .jt-modal-card {
    transform: translateY(0);
}

.jt-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.jt-modal-title {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.jt-modal-close-btn {
    background: transparent;
    border: none;
    font-size: 22px;
    line-height: 1;
    color: #94a3b8;
    cursor: pointer;
    padding: 0 4px;
}

.jt-modal-close-btn:hover {
    color: var(--text-main);
}

.jt-modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.jt-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.jt-form-group {
    margin-bottom: 14px;
}

.jt-form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.jt-form-input,
.jt-form-select,
.jt-form-textarea {
    width: 100%;
    padding: 8px 12px;
    font-family: inherit;
    font-size: 13px;
    color: var(--text-main);
    background: white;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.jt-form-input:focus,
.jt-form-select:focus,
.jt-form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.1);
}

.jt-form-textarea {
    resize: vertical;
}

.jt-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

/* --- FEATURES / BENEFITS SECTION --- */
.jt-features-section {
    padding: 32px 0;
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.jt-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 24px;
}

.jt-section-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    letter-spacing: -0.6px;
    color: var(--text-main);
    margin-bottom: 6px;
}

.jt-section-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.jt-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.jt-feature-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.jt-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 102, 255, 0.25);
}

.jt-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.jt-feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.jt-feature-card p {
    font-size: 12px;
    line-height: 1.45;
    color: var(--text-secondary);
}

/* --- SEO SECTION --- */
.jt-seo-section {
    padding: 40px 0;
}

.jt-seo-box {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.jt-seo-box h2 {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.jt-seo-box p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* --- FAQ SECTION --- */
.jt-faq-section {
    padding: 40px 0 60px;
}

.jt-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.jt-faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.jt-faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.06);
}

.jt-faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
    cursor: pointer;
}

.jt-faq-icon {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    transition: transform 0.25s ease;
}

.jt-faq-item.active .jt-faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.jt-faq-ans {
    display: none;
    padding: 0 20px 16px;
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--text-secondary);
}

.jt-faq-item.active .jt-faq-ans {
    display: block;
}

/* --- TOAST NOTIFICATION --- */
.jt-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #0f172a;
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 3000;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.jt-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* --- ACCESSIBILITY --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1100px) {
    .jt-metrics-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .jt-kanban-board {
        display: flex;
        overflow-x: auto;
        padding-bottom: 12px;
    }

    .jt-col {
        min-width: 260px;
        width: 260px;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .jt-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jt-workspace-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .jt-workspace-actions {
        width: 100%;
        justify-content: space-between;
    }

    .jt-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .jt-view-switcher {
        width: 100%;

    }

    .jt-view-btn {
        flex: 1;
        justify-content: center;
    }

    .jt-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .jt-metrics-grid {
        grid-template-columns: 1fr;
    }
}
