*{
box-sizing:border-box;
margin:0;
padding:0;
font-family:Tahoma;
}

body{
background:linear-gradient(135deg,#eef4fb,#dfe9f7);
padding:20px;
color:#1455a0;
}

.container{
max-width:1050px;
margin:auto;
background:#fff;
border-radius:25px;
padding:28px;
box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

h1{
margin-bottom:25px;
font-size:28px;
text-align:right;
color:#1455a0;
font-weight:800;
}

.reports-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:16px;
}

.report-btn{
min-height:64px;
padding:14px 18px;
border-radius:14px;
background:#f8fbff;
border:1px solid #cfd8e6;
color:#1455a0;
font-size:17px;
font-weight:800;
text-decoration:none;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
line-height:1.5;
transition:.2s ease;
box-shadow:0 8px 18px rgba(20,85,160,0.06);
}

.report-btn:hover{
background:#1455a0;
color:#fff;
border-color:#1455a0;
transform:translateY(-2px);
box-shadow:0 12px 24px rgba(20,85,160,0.18);
}

.actions{
margin-top:25px;
display:flex;
gap:12px;
justify-content:center;
flex-wrap:wrap;
}

.btn{
padding:13px 28px;
border:none;
border-radius:12px;
font-size:16px;
cursor:pointer;
min-width:130px;
font-weight:bold;
text-decoration:none;
display:inline-flex;
align-items:center;
justify-content:center;
}

.back{
background:#d8e0ea;
color:#1455a0;
}

.btn:hover{
opacity:.9;
}

@media (max-width:700px){

body{
padding:12px;
}

.container{
padding:20px;
border-radius:20px;
}

h1{
font-size:24px;
}

.reports-grid{
grid-template-columns:1fr;
gap:12px;
}

.report-btn{
min-height:58px;
font-size:16px;
}

.actions{
flex-direction:column;
}

.btn{
width:100%;
}
}