.qers-error-msg{
margin-top:15px;
background:#fee2e2;
color:#991b1b;
padding:12px;
border-radius:8px;
font-size:14px;
}

.qers-dashboard{
max-width:1100px;
margin:40px auto;
font-family:'Inter',sans-serif;
}

.qers-card{
background:#ffffff;
padding:30px;
border-radius:16px;
box-shadow:0 8px 30px rgba(0,0,0,0.06);
margin-bottom:30px;
}

.qers-ref-wrap{
display:flex;
gap:10px;
}

.qers-ref-wrap input{
flex:1;
padding:12px;
border:1px solid #ddd;
border-radius:8px;
}

.qers-ref-wrap button{
background:#1e3a8a;
color:#fff;
border:none;
padding:12px 20px;
border-radius:8px;
cursor:pointer;
}

.qers-wa{
background:#25D366;
color:#fff;
padding:12px 18px;
border-radius:8px;
text-decoration:none;
}

.qers-stats{
display:flex;
gap:20px;
margin-bottom:30px;
}

.qers-stat{
flex:1;
background:linear-gradient(135deg,#1e3a8a,#2563eb);
color:#fff;
padding:30px;
border-radius:16px;
text-align:center;
}

.qers-stat span{
font-size:32px;
font-weight:600;
display:block;
margin-top:10px;
}

.qers-table{
width:100%;
border-collapse:collapse;
}

.qers-table th{
background:#f3f4f6;
padding:15px;
text-align:left;
}

.qers-table td{
padding:15px;
border-bottom:1px solid #eee;
}












.qers-form-wrapper{
display:flex;
justify-content:center;
align-items:center;
min-height:80vh;
font-family:'Inter',sans-serif;
}

.qers-form-card{
background:#ffffff;
padding:40px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
width:100%;
max-width:500px;
}

.qers-form-card h2{
margin-bottom:30px;
text-align:center;
}

.qers-field{
position:relative;
margin-bottom:25px;
}

.qers-field input,
.qers-field select{
width:100%;
padding:14px 12px;
border:1px solid #ddd;
border-radius:8px;
outline:none;
background:#fff;
}

.qers-field label{
position:absolute;
left:12px;
top:14px;
font-size:14px;
color:#888;
transition:0.2s;
pointer-events:none;
}

.qers-field input:focus + label,
.qers-field input:not(:placeholder-shown) + label{
top:-8px;
left:8px;
background:#fff;
padding:0 6px;
font-size:12px;
color:#2563eb;
}

.qers-btn{
width:100%;
padding:14px;
background:linear-gradient(135deg,#1e3a8a,#2563eb);
border:none;
color:#fff;
border-radius:10px;
font-size:16px;
cursor:pointer;
transition:0.3s;
}

.qers-btn:hover{
opacity:0.9;
}