/* CARD LAYOUT */
.nav-card {
background: #ffffff;
padding: 18px;
margin-bottom: 18px;
border-radius: 8px;
border: 1px solid #e5e7eb;
}
/* INPUT ROW */
.input-row {
display: flex;
align-items: center;
gap: 8px;
}
.step-btn {
width: 36px;
height: 36px;
font-size: 1.2rem;
border-radius: 6px;
border: 1px solid #d1d5db;
background: #f3f4f6;
cursor: pointer;
}
input {
width: 80px;
padding: 6px;
font-size: 1rem;
border: 1px solid #d1d5db;
border-radius: 6px;
}
/* TITLE BLOCK */
#reportTitle {
margin-bottom: 18px;
text-align: left;
}
.report-title-line1 {
font-size: 1.35rem;
font-weight: 700;
color: #b91c1c;
margin-bottom: 4px;
}
.report-title-line2 {
font-size: 1rem;
font-weight: 500;
color: #000;
line-height: 1.35;
}
/* REPORT SPACING */
#reportContent p {
margin: 10px 0 14px 0;
line-height: 1.45;
}
#reportContent ul {
margin: 10px 0 14px 20px;
line-height: 1.45;
}
#reportContent li {
margin-bottom: 6px;
}
/* PRINT ISOLATION */
@media print {
body * {
visibility: hidden !important;
}
#reportTitle,
#reportTitle *,
#reportContent,
#reportContent * {
visibility: visible !important;
}
#reportTitle {
position: absolute !important;
top: 0 !important;
left: 0 !important;
width: 100% !important;
padding: 0 20px 10px 20px !important;
box-sizing: border-box !important;
}
#reportContent {
position: absolute !important;
top: 70px !important;
left: 0 !important;
width: 100% !important;
max-width: 100% !important;
padding: 20px !important;
box-sizing: border-box !important;
}
#reportContent p,
#reportContent ul,
#reportContent li {
white-space: normal !important;
overflow: visible !important;
}
button,
input,
.step-btn,
#navigator-radon-tool > .nav-card:not(#card-report) {
display: none !important;
}
}