/* PAGE */

.jobs-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:25px;
margin-top:20px;
}

/* CARD */

.job-card{
background:white;
border-radius:14px;
padding:22px;
box-shadow:0 4px 12px rgba(0,0,0,0.06);
border:1px solid #e5e7eb;
display:flex;
flex-direction:column;
justify-content:space-between;
transition:all .25s ease;
}

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

/* HEADER */

.job-title{
font-size:18px;
font-weight:600;
color:#1f2937;
margin-bottom:2px;
}

.company-name{
font-size:14px;
color:#6b7280;
margin-bottom:12px;
}

/* INFO */

.job-info{
font-size:14px;
color:#374151;
line-height:1.7;
margin-bottom:14px;
}

.job-info span{
font-weight:600;
color:#111827;
}

/* DESCRIPTION */

.job-desc{
font-size:14px;
color:#4b5563;
margin-bottom:18px;
line-height:1.6;
}

/* BUTTON */

.result-btn{
background:linear-gradient(135deg,#6366f1,#7c3aed);
color:white;
border:none;
padding:10px;
border-radius:8px;
font-weight:500;
cursor:pointer;
transition:.2s;
}

.result-btn:hover{
opacity:.9;
transform:scale(1.03);
}

/* FOOTER */

.job-footer{
margin-top:14px;
padding-top:10px;
border-top:1px solid #e5e7eb;
font-size:13px;
color:#6b7280;
display:flex;
justify-content:space-between;
}

/* VIEW ALL BUTTON */

.view-all-btn{
padding:12px 20px;
border-radius:10px;
border:1px solid #d1d5db;
background:#f9fafb;
cursor:pointer;
font-weight:500;
transition:.2s;
}

.view-all-btn:hover{
background:#f3f4f6;
}

/* GLOBAL FONT */

body{
font-family: Inter, system-ui, -apple-system, sans-serif;
font-size:15px;
}

/* SIDEBAR */

.nav-btn{
display:flex;
align-items:center;
gap:12px;
width:100%;
padding:12px 14px;
border-radius:10px;
font-size:15px;
font-weight:500;
color:#e5e7eb;
transition:0.2s;
}

.nav-btn:hover{
background:#1e293b;
}

.nav-btn.active{
background:#1e293b;
}

/* SIDEBAR TITLE */

.sidebar-title{
font-size:20px;
font-weight:600;
letter-spacing:0.5px;
}

/* CARDS */

.stat-card,
.dashboard-graph-card,
.dashboard-table-card,
.bg-white{
border-radius:14px;
border:1px solid #e5e7eb;
}

/* BUTTONS */

button{
font-weight:500;
}

/* PRIMARY BUTTON */

.btn-primary{
background:#4f46e5;
color:white;
padding:8px 14px;
border-radius:8px;
}

.btn-primary:hover{
background:#4338ca;
}

/* TABLE */

table{
border-radius:10px;
overflow:hidden;
}

thead{
background:#f3f4f6;
font-size:14px;
}

th{
padding:10px;
font-weight:600;
}

td{
padding:10px;
}

/* INPUTS */

input,
select,
textarea{
border:1px solid #e5e7eb;
border-radius:8px;
padding:8px 10px;
font-size:14px;
}

/* FILTER BAR */

.filters-row input{
min-width:140px;
}

/* HOVER EFFECT */

.stat-card:hover,
.bulk-card:hover{
transform:translateY(-2px);
box-shadow:0 6px 14px rgba(0,0,0,0.08);
transition:0.2s;
}