body{
font-family: Arial;
margin:20px;

/* background shapes */

background:
radial-gradient(circle at 15% 20%, #e8f0ff 0%, transparent 40%),
radial-gradient(circle at 85% 80%, #dbe7ff 0%, transparent 40%),
linear-gradient(135deg,#f5f7fb,#e9effa);
}

/* title */

.title{
text-align:center;
margin-bottom:25px;
}


/* search area */

.search-bar{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
}

.search-left{
display:flex;
gap:10px;
}

#searchInput{
padding:8px;
width:220px;
border-radius:6px;
border:1px solid #ccc;
}

#locationFilter{
padding:8px;
border-radius:6px;
border:1px solid #ccc;
}

/* top job card */

.top-card{
background:white;
padding:15px;
border-radius:10px;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
width:160px;
text-align:center;
}


/* stats cards */

.stats{
display:flex;
gap:15px;
margin:20px 0;
}

.card{
background:white;
padding:15px;
border-radius:10px;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
width:160px;
text-align:center;
}

.card h3{
font-size:14px;
margin-bottom:6px;
}

.card p{
font-size:20px;
font-weight:bold;
color:#2c3e50;
}


/* charts */

.charts{
display:flex;
gap:25px;
margin-top:25px;
}

.chart-box{
background:white;
padding:15px;
border-radius:10px;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
width:420px;
height:300px;
}


/* table */

table{
width:100%;
margin-top:25px;
border-collapse:collapse;
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

th,td{
padding:8px;
border-bottom:1px solid #eee;
}

th{
background:#2c3e50;
color:white;
font-size:14px;
}


/* buttons */

button{
padding:7px 12px;
border:none;
border-radius:6px;
background:#2c3e50;
color:white;
cursor:pointer;
}

button:hover{
background:#1f2f45;
}
/* navbar */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
background:#2c3e50;
color:white;
padding:12px 20px;
border-radius:8px;
margin-bottom:20px;
}

.logo{
font-weight:bold;
font-size:18px;
}

.nav-links a{
color:white;
margin-left:15px;
text-decoration:none;
font-size:14px;
}

.nav-links a:hover{
text-decoration:underline;
}


/* card icons */

.icon{
font-size:24px;
display:block;
margin-bottom:5px;
}
/* layout */

.layout{
display:flex;
}

/* sidebar */

.sidebar{
width:220px;
background:#2c3e50;
color:white;
height:100vh;
padding:20px;
}

.logo{
margin-bottom:30px;
}

.menu{
list-style:none;
padding:0;
}

.menu li{
padding:12px 10px;
cursor:pointer;
border-radius:6px;
}

.menu li:hover{
background:#34495e;
}
.menu a{
color:white;
text-decoration:none;
display:block;
}

.menu a:hover{
background:#34495e;
border-radius:6px;
}
/* main content */

.main{
flex:1;
padding:20px;
}
/* dark mode */

.dark-mode{
background:#1e1e2f;
color:white;
}

.dark-mode .card,
.dark-mode .chart-box,
.dark-mode table{
background:#2b2b3d;
color:white;
}

.dark-mode th{
background:#111827;
}

.dark-mode .sidebar{
background:#111827;
}
/* login page */

.login-container{

width:300px;
margin:150px auto;
padding:30px;

background:white;

border-radius:10px;

box-shadow:0 5px 20px rgba(0,0,0,0.1);

text-align:center;

}

.login-container input{

width:100%;
padding:10px;
margin:10px 0;

border-radius:6px;
border:1px solid #ccc;

}

.login-container button{

width:100%;
padding:10px;

background:#2c3e50;
color:white;

border:none;
border-radius:6px;

cursor:pointer;

}
/* about page layout */

.about-container{
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 20px;
}

.about-container .card{
padding: 25px;
font-size: 16px;
line-height: 1.6;

}
/* Mobile Responsive */

@media (max-width: 768px){

.layout{
flex-direction:column;
}

.sidebar{
width:100%;
height:auto;
}

.main{
margin-left:0;
padding:15px;
}

.search-bar{
flex-direction:column;
gap:10px;
}

.stats{
flex-direction:column;
}

.charts{
flex-direction:column;
}

.chart-box{
width:100%;
}

table{
font-size:14px;
}

}



