*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f4f7fc;
color:#333;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#0d6efd;
padding:18px 0;
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:28px;
font-weight:700;
color:#fff;
}

nav ul{
display:flex;
list-style:none;
}

nav li{
margin-left:25px;
}

nav a{
text-decoration:none;
color:white;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#ffd54f;
}

.hero{
padding:120px 0;
text-align:center;
background:linear-gradient(135deg,#0d6efd,#6610f2);
color:white;
}

.hero h1{
font-size:56px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
margin-bottom:40px;
}

.btn{
display:inline-block;
padding:15px 35px;
background:white;
color:#0d6efd;
text-decoration:none;
font-weight:600;
border-radius:40px;
}

.stats{
padding:70px 0;
}

.stats .container{
display:flex;
gap:25px;
justify-content:space-between;
}

.stat-box{
flex:1;
background:white;
padding:40px;
text-align:center;
border-radius:12px;
box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.features{
padding:80px 0;
}

.features .container{
display:flex;
gap:25px;
}

.card{
flex:1;
background:white;
padding:40px;
border-radius:12px;
box-shadow:0 10px 20px rgba(0,0,0,.08);
text-align:center;
}

.card h2{
margin-bottom:15px;
}

footer{
background:#212529;
color:white;
text-align:center;
padding:30px;
margin-top:60px;
}

@media(max-width:768px){

header .container,
.stats .container,
.features .container{
flex-direction:column;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
}

nav li{
margin:10px;
}

.hero h1{
font-size:36px;
}

}
.logo a{
color:#fff;
text-decoration:none;
font-size:28px;
font-weight:700;
}

.register-btn{
background:#ffffff;
color:#0d6efd !important;
padding:10px 18px;
border-radius:25px;
}

.register-btn:hover{
background:#ffd54f;
color:#000 !important;
}

.dashboard-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

margin-top:30px;

}

.dash-card{

background:white;

padding:30px;

border-radius:12px;

text-align:center;

box-shadow:0 5px 15px rgba(0,0,0,.1);

}

.table{

width:100%;

border-collapse:collapse;

background:white;

}

.table th{

background:#0d6efd;

color:white;

padding:15px;

}

.table td{

padding:12px;

border-bottom:1px solid #ddd;

text-align:center;

}

@media(max-width:900px){

.dashboard-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.dashboard-grid{

grid-template-columns:1fr;

}

}

.typing-info{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

margin-bottom:30px;

}

.info-box{

background:#ffffff;

padding:20px;

text-align:center;

border-radius:10px;

box-shadow:0 5px 10px rgba(0,0,0,.1);

}

.paragraph{

background:white;

padding:25px;

font-size:22px;

line-height:40px;

border-radius:10px;

box-shadow:0 5px 10px rgba(0,0,0,.1);

min-height:180px;

}

#typingArea{

width:100%;

height:180px;

padding:20px;

font-size:22px;

border:2px solid #0d6efd;

border-radius:10px;

resize:none;

}

@media(max-width:768px){

.typing-info{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:500px){

.typing-info{

grid-template-columns:1fr;

}

}

.paragraph span{

font-weight:500;

}

#typingArea:focus{

outline:none;

border:2px solid #28a745;

}

.dashboard{

padding:40px 0;

}

.cards{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

margin:30px 0;

}

.card{

background:#ffffff;

padding:25px;

text-align:center;

border-radius:12px;

box-shadow:0 3px 12px rgba(0,0,0,.1);

}

.card h3{

margin-bottom:15px;

color:#777;

}

.card h1{

font-size:42px;

color:#0d6efd;

}

.quick-buttons{

margin:30px 0;

}

.quick-buttons .btn{

margin-right:10px;

}

.dashboard-table{

width:100%;

border-collapse:collapse;

background:white;

}

.dashboard-table th{

background:#0d6efd;

color:white;

padding:15px;

}

.dashboard-table td{

padding:12px;

border-bottom:1px solid #ddd;

text-align:center;

}

@media(max-width:900px){

.cards{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.cards{

grid-template-columns:1fr;

}

}
.admin-wrapper{

display:flex;

min-height:100vh;

}

.sidebar{

width:260px;

background:#0d6efd;

color:#fff;

padding:30px;

}

.sidebar h2{

margin-bottom:15px;

}

.admin-name{

margin-bottom:30px;

padding:12px;

background:rgba(255,255,255,.15);

border-radius:8px;

}

.sidebar ul{

list-style:none;

padding:0;

margin:0;

}

.sidebar li{

margin:12px 0;

}

.sidebar a{

display:block;

padding:10px 12px;

color:#fff;

text-decoration:none;

border-radius:6px;

transition:.3s;

}

.sidebar a:hover{

background:rgba(255,255,255,.15);

}

.content{

flex:1;

padding:35px;

background:#f4f6fb;

}