
.hrcc-wrap{
padding:20px;
background:linear-gradient(135deg,#eef6ff,#ffffff);
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
}

.hrcc-card{
background:#fff;
padding:30px;
border-radius:24px;
max-width:900px;
width:100%;
box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.hrcc-card h1{
text-align:center;
color:#0b5ea8;
margin-top:0;
}

.hrcc-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.hrcc-grid label{
display:block;
margin-bottom:8px;
font-weight:600;
}

.hrcc-grid input,
.hrcc-grid select{
width:100%;
padding:14px;
border:1px solid #dbe4ef;
border-radius:14px;
font-size:16px;
box-sizing:border-box;
}

#calculate{
width:100%;
margin-top:24px;
padding:16px;
border:none;
border-radius:16px;
background:#0b5ea8;
color:#fff;
font-size:18px;
font-weight:700;
cursor:pointer;
}

.hrcc-results{
margin-top:28px;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.result-box{
background:#f5faff;
padding:24px;
border-radius:18px;
text-align:center;
}

.result-box h2{
margin:10px 0 0;
color:#0b5ea8;
}

.hrcc-note{
text-align:center;
margin-top:20px;
color:#666;
}

@media(max-width:768px){

.hrcc-grid,
.hrcc-results{
grid-template-columns:1fr;
}

.hrcc-card{
padding:20px;
}

}
