body{
margin:0;
background:#f6f7fb;
font-family:Inter,Arial;
display:flex;
justify-content:center;
padding:40px;
}

.card{
width:460px;
background:white;
padding:36px;
border-radius:14px;
box-shadow:0 25px 50px rgba(0,0,0,.08);
}

.jobs-banner{
background:linear-gradient(135deg,#6366f1,#4f46e5);
color:white;
padding:14px;
border-radius:10px;
text-align:center;
margin-bottom:20px;
font-weight:600;
cursor:pointer;
}

.subtitle{
color:#6b7280;
font-size:14px;
margin-bottom:20px;
}

label{
font-size:13px;
margin-top:14px;
display:block;
}

input,select,textarea{
width:100%;
padding:12px;
margin-top:6px;
border-radius:8px;
border:1px solid #ddd;
}

button{
width:100%;
margin-top:22px;
padding:14px;
background:#6366f1;
color:white;
border:none;
border-radius:10px;
cursor:pointer;
}

.title{
text-align:center;
margin-bottom:30px;
}

.job-card{
background:white;
padding:20px;
margin-bottom:20px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}
/* ================= JOB PAGE ================= */

.jobs-container{
max-width:900px;
margin:auto;
padding:40px 20px;
}

.jobs-title{
text-align:center;
margin-bottom:40px;
font-size:34px;
font-weight:700;
color:#111827;
}


/* ===== JOB CARD ===== */

.job-card{

background:white;
padding:28px;
border-radius:16px;
margin-bottom:30px;

box-shadow:
0 20px 40px rgba(0,0,0,0.05);

transition:.25s;
}

.job-card:hover{
transform:translateY(-4px);
box-shadow:
0 30px 60px rgba(0,0,0,0.08);
}

.job-card h2{
margin:0 0 12px;
font-size:22px;
color:#111827;
}

.job-card p{
margin:6px 0;
color:#4b5563;
font-size:15px;
}


/* ===== APPLY BUTTON ===== */

.job-card button{
margin-top:18px;
width:100%;
padding:14px;

background:linear-gradient(
135deg,
#6366f1,
#4f46e5
);

border:none;
border-radius:10px;
color:white;
font-size:15px;
font-weight:600;
cursor:pointer;
transition:.2s;
}

.job-card button:hover{
transform:scale(1.02);
}


/* ===== JD DROPDOWN ===== */

.job-card details{
margin-top:18px;
background:#f3f4f6;
padding:14px;
border-radius:10px;
font-size:14px;
}

.job-card summary{
cursor:pointer;
font-weight:600;
}

.job-card pre{
white-space:pre-wrap;
font-family:inherit;
margin-top:10px;
}