*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#f5f7fb;
}

.container{
width:95%;
max-width:1200px;
margin:25px auto;
}

.search-box{
background:#fff;
padding:15px;
border-radius:8px;
box-shadow:0 2px 10px rgba(0,0,0,.08);
margin-bottom:20px;
}

.search-box form{
display:flex;
gap:10px;
flex-wrap:wrap;
}

.search-box input,
.search-box select{
flex:1;
padding:10px;
border:1px solid #ddd;
border-radius:6px;
outline:none;
}

.search-box button{
background:#0057ff;
color:#fff;
border:none;
padding:10px 20px;
border-radius:6px;
cursor:pointer;
}

.main{
display:flex;
gap:20px;
}

.sidebar{
width:220px;
background:#fff;
padding:15px;
border-radius:8px;
box-shadow:0 2px 10px rgba(0,0,0,.08);
height:fit-content;
}

.sidebar h3{
margin-bottom:15px;
font-size:18px;
}

.sidebar a{
display:block;
padding:10px;
text-decoration:none;
color:#444;
border-radius:5px;
margin-bottom:5px;
}

.sidebar a:hover{
background:#0057ff;
color:#fff;
}

.jobs{
flex:1;
}

.job-card{
display:flex;
align-items:center;
justify-content:space-between;
background:#fff;
padding:15px;
margin-bottom:15px;
border-radius:8px;
box-shadow:0 2px 10px rgba(0,0,0,.08);
transition:.3s;
}

.job-card:hover{
transform:translateY(-2px);
}

.logo{
width:70px;
}

.logo img{
width:55px;
height:55px;
border-radius:8px;
object-fit:contain;
border:1px solid #eee;
}

.info{
flex:1;
padding:0 15px;
}

.info h2{
font-size:18px;
margin-bottom:5px;
}

.info h4{
font-size:15px;
color:#0057ff;
margin-bottom:8px;
}

.info p{
display:inline-block;
margin-right:15px;
font-size:14px;
color:#666;
}

.action{
display:flex;
gap:10px;
}

.action a{
padding:9px 18px;
border-radius:6px;
text-decoration:none;
font-size:14px;
font-weight:bold;
}

.view{
background:#0057ff;
color:#fff;
}

.apply{
background:#16a34a;
color:#fff;
}

.pagination{
margin-top:20px;
text-align:center;
}

.pagination a{
display:inline-block;
padding:8px 14px;
background:#fff;
margin:3px;
text-decoration:none;
border-radius:5px;
color:#333;
box-shadow:0 2px 5px rgba(0,0,0,.1);
}

.pagination a:hover{
background:#0057ff;
color:#fff;
}

@media(max-width:768px){

.main{
flex-direction:column;
}

.sidebar{
width:100%;
}

.job-card{
flex-direction:column;
align-items:flex-start;
}

.info{
padding:15px 0;
}

.action{
width:100%;
}

.action a{
width:50%;
text-align:center;
}

.search-box form{
flex-direction:column;
}

}