body{
font-family:system-ui,-apple-system,Segoe UI,Roboto;
background:#eef1f5;
margin:0;
color:#1f2937;
}

.container{
max-width:1200px;
margin:auto;
padding:30px;
}

/* NAVBAR */

.navbar{
background:#1f2937;
padding:14px 25px;
display:flex;
gap:25px;
align-items:center;
}

.navbar a{
color:white;
text-decoration:none;
font-weight:600;
font-size:14px;
opacity:0.9;
}

.navbar a:hover{
opacity:1;
}

/* TITLES */

h1{
font-size:32px;
margin-bottom:20px;
}

h2{
margin-top:0;
}

/* GRID */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
margin-bottom:30px;
}

/* CARDS */

.card{
background:white;
border-radius:12px;
padding:25px;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
transition:0.2s;
}

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

/* BUTTONS */

button{
background:#2563eb;
color:white;
border:none;
padding:10px 18px;
border-radius:8px;
font-size:14px;
cursor:pointer;
}

button:hover{
background:#1e40af;
}

/* TABLE */

table{
width:100%;
border-collapse:collapse;
margin-top:15px;
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

th{
background:#f1f5f9;
font-weight:600;
}

td,th{
padding:12px;
border-bottom:1px solid #e5e7eb;
text-align:left;
}

/* LINKS */

a{
color:#2563eb;
text-decoration:none;
}

a:hover{
text-decoration:underline;
}