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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    color: #2c3e50;
    line-height: 1.6;
    padding: 20px;
}

.report-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

/* Header Section */
.report-header {
    background: linear-gradient(135deg, #99cc33 0%, #7ab82d 100%);
    color: white;
    padding: 60px 40px 40px;
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

/* Logo Section */
.logo-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.logo-img {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    display: block;
}

.logo-img.main-logo {
    max-width: 180px;
}

.title-section {
    flex-grow: 1;
}

.main-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.website-url {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.website-url a {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.website-url a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

/* Screenshots Section */
.screenshots-section {
    padding: 60px 40px;
    background: white;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #99cc33, #7ab82d);
    border-radius: 2px;
}

.section-title.neutral::after {
    background: linear-gradient(90deg, #3335cc, #312db8);
}

.screenshot-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.screenshot-link {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    background: #f8f9fa;
    min-height: 250px;
}

.screenshot-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.screenshot-link.large {
    flex: 3;
}

.screenshot-link.small {
    flex: 1;
}

.screenshot-link.missing-screenshot::before {
    content: '📷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.3;
}

.screenshot-link.missing-screenshot::after {
    content: 'Screenshot nicht verfügbar';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #7f8c8d;
    font-size: 0.9rem;
    white-space: nowrap;
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-align: center;
    font-style: italic;
    line-height: 1.5;
}

/* Statistics Overview */
.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 40px;
    background: #f8f9fa;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-blue {
    border-top: 4px solid #073680;
}

.stat-green {
    border-top: 4px solid #99cc33;
}

.stat-red {
    border-top: 4px solid #cb0101;
}

.stat-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-blue .stat-title {
    color: #073680;
}

.stat-green .stat-title {
    color: #99cc33;
}

.stat-red .stat-title {
    color: #cb0101;
}

.stat-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
/* Update existing stat-item styles and add link styles */
.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Add link-specific styles */
.stat-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.stat-link:hover {
    background: #e3f2fd;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(7, 54, 128, 0.15);
}

.quality-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.quality-link:hover {
    background: #e8f5e9;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.15);
}

.warning-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.warning-link:hover {
    background: #ffebee;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(203, 1, 1, 0.15);
}

.warning-link.warning-moderate:hover {
    background: #fff3e0;
    box-shadow: 0 2px 8px rgba(255, 151, 71, 0.15);
}

/* Ensure text color stays correct in links */
.stat-link .stat-label,
.stat-link .stat-value {
    color: inherit;
}

.quality-link span,
.warning-link span {
    color: inherit;
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-label {
    font-weight: 600;
    color: #5a6c7d;
}

.stat-value {
    font-weight: 700;
    color: #2c3e50;
    margin-left: auto;
}

.quality-items,
.warning-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quality-item,
.warning-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.quality-item:hover,
.warning-item:hover {
    background: #e9ecef;
}

.check-icon {
    color: #99cc33;
    font-size: 1.3rem;
    font-weight: bold;
}

.warning-icon {
    font-size: 1.3rem;
}

.warning-critical .warning-icon {
    color: #cb0101;
}

.warning-moderate .warning-icon {
    color: #ff9747;
}

/* Print Button */
.print-button-container {
    text-align: center;
    padding: 40px;
    background: white;
}

.print-button {
    background: linear-gradient(135deg, #073680, #0a4a9e);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
border-radius: 8px;
cursor: pointer;
box-shadow: 0 4px 15px rgba(7, 54, 128, 0.3);
transition: all 0.3s ease;
}
.print-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(7, 54, 128, 0.4);
}
.print-button:active {
transform: translateY(0);
}
/* Table of Contents */
.table-of-contents {
padding: 60px 40px;
background: #f8f9fa;
}
.toc-nav {
max-width: 800px;
margin: 0 auto;
}
.toc-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
}
.toc-item {
background: white;
border-radius: 8px;
border-left: 4px solid #99cc33;
transition: all 0.3s ease;
}
.toc-item:hover {
transform: translateX(5px);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.toc-link {
display: block;
padding: 15px 20px;
color: #2c3e50;
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}
.toc-link:hover {
color: #99cc33;
}
.toc-link::before {
content: '→';
margin-right: 10px;
color: #99cc33;
}
/* Handlungsanweisungen Section */
.handlungsanweisungen-section {
padding: 60px 40px;
background: white;
}
.section-intro {
text-align: center;
color: #5a6c7d;
margin-bottom: 40px;
font-size: 1.1rem;
}
.actions-list {
display: flex;
flex-direction: column;
gap: 25px;
max-width: 900px;
margin: 0 auto;
}
.action-item {
display: flex;
gap: 20px;
background: white;
border-radius: 12px;
padding: 25px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}
.action-item:hover {
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
transform: translateY(-2px);
}
.action-warning {
border-left: 5px solid #ff9747;
}
.action-number {
flex-shrink: 0;
width: 40px;
height: 40px;
background: linear-gradient(135deg, #ff9747, #ff7f2a);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.2rem;
}
.action-content {
flex-grow: 1;
}
.action-title {
font-size: 1.2rem;
font-weight: 700;
color: #2c3e50;
margin-bottom: 10px;
}
.action-description {
color: #5a6c7d;
margin-bottom: 12px;
line-height: 1.6;
}
.action-link {
color: #E5491F;
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}
.action-link:hover {
color: #c73d15;
text-decoration: underline;
}
/* Important Pages Section */
.important-pages {
padding: 60px 40px;
background: white;
}
.pages-list {
display: flex;
flex-direction: column;
gap: 8px;
max-width: 900px;
margin: 0 auto;
}
.page-item {
display: flex;
align-items: center;
gap: 20px;
padding: 16px 20px;
background: #f8f9fa;
border-radius: 8px;
transition: all 0.3s ease;
}
.page-item.page-main {
border-left: 4px solid #99cc33;
}
.page-item.page-secondary {
border-left: 4px solid #7f8c8d;
margin-left: 30px;
background: #f1f3f5;
}
.page-item.page-sub {
border-left: 2px solid #dee2e6;
margin-left: 40px;
padding: 12px 20px;
background: #f8f9fa;
}
.page-item:hover {
background: #e9ecef;
transform: translateX(5px);
}
.page-type {
font-weight: 700;
text-transform: uppercase;
font-size: 0.85rem;
color: #073680;
min-width: 180px;
letter-spacing: 0.05em;
}
.page-link {
color: #E5491F;
text-decoration: none;
word-break: break-all;
transition: color 0.3s ease;
}
.page-link:hover {
color: #c73d15;
text-decoration: underline;
}
.page-note {
margin-top: 20px;
padding: 15px;
background: #fff8e1;
border-radius: 8px;
border-left: 4px solid #ffc107;
}
.page-note small {
color: #795548;
font-size: 0.85rem;
}

.found-tools {
padding: 60px 40px;
background: #f8f9fa;
}
.tools-list {
display: flex;
flex-direction: column;
gap: 20px;
margin-bottom: 30px;
}
.tool-item {
background: white;
border-radius: 12px;
padding: 25px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}
.tool-item:hover {
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
transform: translateY(-2px);
}
.tool-warning {
border-left: 5px solid #cb0101;
}
.tool-safe {
border-left: 5px solid #99cc33;
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}



.tool-icon {
font-size: 1.8rem;
}
.tool-name {
font-weight: 700;
font-size: 1.2rem;
color: #2c3e50;
flex-grow: 1;
}
.tool-ref {
font-size: 0.9rem;
color: #073680;
font-weight: 600;
background: #e3f2fd;
padding: 2px 8px;
border-radius: 4px;
margin-left: 5px;
}
.tool-badge {
padding: 5px 15px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.badge-critical {
background: #ffebee;
color: #cb0101;
}
.badge-safe {
background: #e8f5e9;
color: #2e7d32;
}
.tool-link {
color: #E5491F;
text-decoration: none;
font-size: 0.95rem;
transition: color 0.3s ease;
}
.tool-link:hover {
color: #c73d15;
text-decoration: underline;
}
.cookie-link {
color: #E5491F;
text-decoration: none;
font-size: 0.95rem;
transition: color 0.3s ease;
}
.row-critical .cookie-link {
color:#cb0101;
}
.row-warning .cookie-link {
color:#ff9800;
}
.row-safe .cookie-link {
color:#99cc33;
}

.cookie-link:hover {
color: #c73d15;
text-decoration: underline;
}
.found-link {
    color: #073680;
text-decoration: none;
font-size: 0.95rem;
transition: color 0.3s ease;
}
.found-link:hover {
color: #c73d15;
text-decoration: underline;
}

.tools-legend {
background: white;
padding: 25px;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.legend-title {
font-weight: 700;
margin-bottom: 15px;
color: #2c3e50;
}
.legend-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
}
.legend-list li {
padding: 12px 15px;
background: #f8f9fa;
border-radius: 6px;
font-size: 0.9rem;
color: #5a6c7d;
line-height: 1.6;
}
.legend-marker {
display: inline-block;
background: #e3f2fd;
color: #073680;
font-weight: 700;
padding: 2px 8px;
border-radius: 4px;
margin-right: 8px;
font-size: 0.85rem;
}
.report-cookies-section {
padding: 60px 40px;
background: white;
}
.cookies-intro {
text-align: center;
margin-bottom: 32px;
margin-topy: 32px;
font-size: 1rem;
}
.status-safe {
color: #99cc33;
font-weight: 700;
}
.status-warning {
    color: #ff9800;
    font-weight: 700;
}

.status-critical {
    color: #cb0101;
    font-weight: 700;
}
.cookies-status {
text-align: center;
margin-bottom: 30px;
font-size: 1rem;
color: #5a6c7d;
}
.cookies-table {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
margin-bottom: 30px;
}
.table-header {
display: grid;
grid-template-columns: 1.5fr 2fr 2fr 1fr 1.5fr;
gap: 15px;
padding: 20px;
background: linear-gradient(135deg, #073680, #0a4a9e);
color: white;
font-weight: 700;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.table-row {
display: grid;
grid-template-columns: 1.5fr 2fr 2fr 1fr 1.5fr;
gap: 15px;
padding: 20px;
border-bottom: 1px solid #e9ecef;
transition: background 0.3s ease;
}
.table-row:hover {
background: #f8f9fa;
}
.table-row:last-child {
border-bottom: none;
}
.row-safe {
background: rgba(153, 204, 51, 0.05);
}
.row-warning {
    background: rgba(255, 152, 0, 0.05);
}

.row-critical {
    background: rgba(203, 1, 1, 0.05);
    color:#
}
.row-safe:hover {
    background: rgba(153, 204, 51, 0.1);
}

.row-warning:hover {
    background: rgba(255, 152, 0, 0.1);
}

.row-critical:hover {
    background: rgba(203, 1, 1, 0.1);
}
.table-row > div {
word-break: break-word;
font-size: 0.9rem;
color: #2c3e50;
}
.wsc-cookies-note {
background: #f8f9fa;
padding: 20px;
border-radius: 8px;
border-left: 4px solid #3f33cc;
}
.wsc-cookies-note p {
color: #5a6c7d;
font-size: 0.95rem;
line-height: 1.6;
}
@media print {
body {
background: white;
padding: 0;
}

.report-container {
    box-shadow: none;
}

.no-print {
    display: none !important;
}

.stat-card:hover,
.screenshot-link:hover,
.tool-item:hover {
    transform: none;
    box-shadow: none;
}

.logo-section {
    box-shadow: none;
}

.page-link,
.tool-link,
.cookie-link,
.action-link,
.toc-link {
    color: #000 !important;
}

}
/* Responsive Design */
@media (max-width: 992px) {
.header-content {
flex-direction: column;
text-align: center;
}

.logo-section {
    width: 100%;
    max-width: 250px;
}

.main-title {
    font-size: 2.5rem;
}

}
@media (max-width: 768px) {
body {
padding: 10px;
}

.report-header {
    padding: 40px 20px 30px;
}

.main-title {
    font-size: 2rem;
}

.website-url a {
    font-size: 1.1rem;
    word-break: break-all;
}

.screenshots-section,
.important-pages,
.found-tools,
.report-cookies-section,
.table-of-contents,
.handlungsanweisungen-section {
    padding: 40px 20px;
}

.screenshot-grid {
    flex-direction: column;
}

.stats-overview {
    padding: 40px 20px;
    grid-template-columns: 1fr;
}

.table-header {
    display: none;
}

.table-row {
    grid-template-columns: 1fr;
    gap: 8px;
}

.table-row > div {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dotted #dee2e6;
}

.table-row > div:last-child {
    border-bottom: none;
}

.table-row > div::before {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #073680;
    margin-right: 10px;
}

.td-name::before { content: 'Name: '; }
.td-value::before { content: 'Wert: '; }
.td-domain::before { content: 'Domäne: '; }
.td-lifetime::before { content: 'Lebensdauer: '; }
.td-purpose::before { content: 'Zweck: '; }

.page-item {
    flex-direction: column;
    align-items: flex-start;
}

.page-item.page-secondary,
.page-item.page-sub {
    margin-left: 15px;
}

.page-type {
    min-width: auto;
}

.logo-section {
    padding: 20px 15px;
    gap: 15px;
}

.logo-img {
    max-width: 120px;
    max-height: 60px;
}

.logo-img.main-logo {
    max-width: 150px;
}

.action-item {
    flex-direction: column;
}

.action-number {
    align-self: flex-start;
}

.print-button {
    padding: 12px 30px;
    font-size: 1rem;
}
}

/* Cookie Changes Notice */
.cookie-changes-notice {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left: 5px solid #ff9800;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(255, 152, 0, 0.1);
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.notice-icon {
    font-size: 2rem;
}

.notice-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e65100;
    margin: 0;
}

.notice-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notice-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.notice-bullet {
    color: #ff9800;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.4;
}

.notice-item p {
    margin: 0;
    color: #4e342e;
    line-height: 1.6;
}

.legal-link {
    color: #E5491F;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed #E5491F;
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: #c73d15;
    border-bottom-style: solid;
}

/* Security Section */
.security-section {
    padding: 60px 40px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.security-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.security-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.card-success {
    border-left: 5px solid #4caf50;
}

.card-warning {
    border-left: 5px solid #ff9800;
}

.card-info {
    border-left: 5px solid #2196f3;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.card-icon {
    font-size: 2rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.card-content {
    padding: 30px;
}

.card-content li {
margin-left: 32px;
}
.card-content ul {
margin-bottom: 12px;
}

.card-intro {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Info Box */
.info-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.info-box-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cert-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cert-item {
    padding: 12px;
    background: white;
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.cert-item.cert-positive {
    border-left: 3px solid #4caf50;
}

.cert-label {
    font-weight: 600;
    color: #2c3e50;
}

.cert-value {
    color: #5a6c7d;
    font-weight: 500;
}

.cert-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-top {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #795548;
}

.cert-note {
    width: 100%;
    color: #5a6c7d;
    font-size: 0.95rem;
    margin: 5px 0 0 0;
    line-height: 1.5;
}

/* Expandable Content */
.expandable-content {
    margin-top: 20px;
}

.expand-button {
    background: #e3f2fd;
    color: #1976d2;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.expand-button:hover {
    background: #bbdefb;
    transform: translateX(5px);
}

.expand-icon {
    font-weight: 700;
    font-size: 1.2rem;
}

.expand-content {
    margin-top: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #2196f3;
}

.expand-content p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #5a6c7d;
}

.expand-content p:last-child {
    margin-bottom: 0;
}

.additional-info {
    font-style: italic;
    color: #7f8c8d;
}

/* Alert Boxes */
.alert-box {
    padding: 15px 20px;
    border-radius: 8px;
    margin: 15px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.alert-info {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.alert-warning {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

.alert-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-box p {
    margin: 0;
    color: #2c3e50;
    line-height: 1.6;
}

/* URL Links */
.url-link {
    color: #2196f3;
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
    transition: color 0.3s ease;
}

.url-link:hover {
    color: #1565c0;
    text-decoration: underline;
}

/* Text Grid */
.text-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 12px;
margin: 20px 0;
}.text-item {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 15px;
border-radius: 6px;
transition: all 0.3s ease;
}.text-item.text-found {
background: #e8f5e9;
border-left: 3px solid #4caf50;
}.text-item.text-missing {
background: #ffebee;
border-left: 3px solid #f44336;
}.text-item:hover {
transform: translateX(5px);
}.text-check {
color: #4caf50;
font-weight: 700;
font-size: 1.2rem;
}.text-cross {
color: #f44336;
font-weight: 700;
font-size: 1.2rem;
}/* Missing Texts List */
.missing-texts {
list-style: none;
display: flex;
flex-direction: column;
gap: 10px;
margin: 20px 0;
}.warning-intro, .check-intro {
font-weight: 600;
color: #2c3e50;
margin: 15px 0;
}.email-link {
color: #2196f3;
text-decoration: none;
font-weight: 600;
border-bottom: 1px dashed #2196f3;
}.email-link:hover {
color: #1565c0;
border-bottom-style: solid;
}

.requirements-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 0px;
margin: 20px 0;
}
.req-icon {
color: #2196f3;
font-size: 1.2rem;
font-weight: 700;
flex-shrink: 0;
}

.highlight-box {
background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
border-left: 4px solid #3f51b5;
border-radius: 8px;
padding: 20px;
margin: 20px 0;
}.highlight-title {
font-size: 1.1rem;
font-weight: 700;
color: #1a237e;
margin-bottom: 12px;
}.highlight-box p {
color: #283593;
line-height: 1.6;
margin-bottom: 10px;
}.highlight-box p:last-child {
margin-bottom: 0;
}/* Buttons */
.btn-info, .btn-download {
display: inline-block;
background: linear-gradient(135deg, #2196f3, #1976d2);
color: white;
padding: 12px 25px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 2px 10px rgba(33, 150, 243, 0.3);
margin-top: 15px;
}.btn-info:hover, .btn-download:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
color: white;
}/* Download Section */
.download-section {
margin-bottom: 20px;
}.warning-text {
background: #fff3e0;
padding: 15px;
border-radius: 6px;
border-left: 4px solid #ff9800;
margin: 15px 0;
color: #e65100;
font-weight: 600;
}.emphasis-link {
color: #E5491F;
text-decoration: none;
font-weight: 700;
border-bottom: 2px solid #E5491F;
}.emphasis-link:hover {
color: #c73d15;
}.section-subtitle {
font-weight: 700;
color: #2c3e50;
margin: 20px 0 15px 0;
}/* Consent Requirements */
.consent-requirements {
list-style: none;
display: flex;
flex-direction: column;
gap: 10px;
margin: 20px 0;
}.consent-item {
display: flex;
gap: 12px;
padding: 12px;
background: #f8f9fa;
border-radius: 6px;
align-items: flex-start;
transition: background 0.3s ease;
}.consent-item:hover {
background: #e9ecef;
}.consent-check {
color: #2196f3;
font-weight: 700;
font-size: 1.1rem;
flex-shrink: 0;
}.inline-link {
color: #2196f3;
text-decoration: none;
border-bottom: 1px dashed #2196f3;
}.inline-link:hover {
color: #1565c0;
border-bottom-style: solid;
}/* Download Footer */
.download-footer {
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid #dee2e6;
}.pdf-link {
color: #E5491F;
text-decoration: none;
font-weight: 600;
border-bottom: 1px dashed #E5491F;
}.pdf-link:hover {
color: #c73d15;
border-bottom-style: solid;
}/* Responsive Design */
@media (max-width: 768px) {
.security-section {
padding: 40px 20px;
}

.card-header, .card-content {
    padding: 20px;
}

.text-grid {
    grid-template-columns: 1fr;
}

.notice-header {
    flex-direction: column;
    align-items: flex-start;
}

.expand-button {
    width: 100%;
    justify-content: center;
}

}
@media print {
.expand-button {
display: none;
}

.expand-content {
    display: block !important;
}
}

/* Privacy Texts Section */
.privacy-texts-section {
    padding: 60px 40px;
    background: white;
}

.privacy-intro {
    margin-bottom: 30px;
}

.intro-warning {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #ff9800;
    box-shadow: 0 2px 10px rgba(255, 152, 0, 0.1);
}

.warning-icon-large {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.intro-content {
    flex-grow: 1;
}

.intro-main {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e65100;
    margin-bottom: 12px;
}

.intro-detail {
    color: #4e342e;
    line-height: 1.6;
    margin-bottom: 12px;
}

.intro-detail:last-child {
    margin-bottom: 0;
}

/* Copy Button Section */
.copy-clipboard-section {
    text-align: center;
    padding: 25px 0;
}

.copy-bottom {
    margin-top: 30px;
}

.btn-copy {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
}

.btn-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.btn-copy:active {
    transform: translateY(0);
}

/* Legal Notice */
.legal-notice {
    margin: 30px 0;
}

.notice-content-box {
    background: #fff8e1;
    border-left: 5px solid #ffc107;
    border-radius: 8px;
    padding: 20px 25px;
}

.notice-content-box p {
    color: #795548;
    line-height: 1.6;
    margin-bottom: 15px;
}

.notice-content-box p:last-child {
    margin-bottom: 0;
}

.legal-ref-link {
    color: #E5491F;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed #E5491F;
}

.legal-ref-link:hover {
    color: #c73d15;
    border-bottom-style: solid;
}

/* Privacy Text Container */
.privacy-text-container {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.text-block {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.text-block-content > ul,.text-block-content > * > ul {
margin-left:24px;
}
.text-block-content > * > ol,.text-block-content > ol {
margin-left:32px;
}

.text-block:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.text-block:last-child {
    margin-bottom: 0;
}

.text-block-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #99cc33;
}

.text-block-content {
    color: #5a6c7d;
    line-height: 1.7;
}

.text-block-content p {
    margin-bottom: 12px;
}

.text-block-content p:last-child {
    margin-bottom: 0;
}

/* Rights List */
.rights-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.rights-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.rights-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #99cc33;
    font-weight: 700;
}

/* Text Placeholder */
.text-placeholder {
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
    border: 2px dashed #3f51b5;
    border-radius: 8px;
    padding: 40px;
    margin: 20px 0;
    text-align: center;
}

.placeholder-text {
    font-size: 1.2rem;
    color: #283593;
    font-style: italic;
    margin: 0;
}

/* Attribution Block */
.attribution-block {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 4px solid #4caf50;
}

.attribution-block .text-block-content {
    text-align: center;
}

.attribution-link {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid #4caf50;
    transition: all 0.3s ease;
}

.attribution-link:hover {
    color: #1b5e20;
    border-bottom-color: #2e7d32;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-texts-section {
        padding: 40px 20px;
    }

    .intro-warning {
        flex-direction: column;
        padding: 20px;
    }

    .warning-icon-large {
        text-align: center;
    }

    .intro-main {
        font-size: 1.1rem;
    }

    .privacy-text-container {
        padding: 20px;
    }

    .text-block {
        padding: 20px;
    }

    .text-block-title {
        font-size: 1.1rem;
    }

    .btn-copy {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
    }
}

@media print {
    .no-print {
        display: none !important;
    }

    .privacy-text-container {
        border: 1px solid #000;
        box-shadow: none;
    }

    .text-block {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
}

/* Page Specific Section */
.page-specific-section {
    padding: 60px 40px;
    background: white;
}

.specific-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.specific-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.specific-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 2px solid #dee2e6;
}

.item-number {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(33, 150, 243, 0.3);
}

.specific-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

.page-title-link {
    color: #E5491F;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.3s ease;
}

.page-title-link:hover {
    color: #c73d15;
    text-decoration: underline;
}

.specific-content {
    padding: 30px;
}

/* Info Message */
.info-message {
    display: flex;
    gap: 15px;
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
    margin-bottom: 20px;
}

.info-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-message p {
    color: #1565c0;
    line-height: 1.6;
    margin: 0;
}

/* Form Pages List */
.form-pages-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-page-item {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 6px;
    border-left: 3px solid #99cc33;
    transition: all 0.3s ease;
}

.form-page-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.form-link {
    color: #E5491F;
    text-decoration: none;
    word-break: break-all;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.form-link:hover {
    color: #c73d15;
}

.confidence-score {
    background: #2196f3;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* Issue Card */
.issue-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.issue-critical {
    border-left: 5px solid #f44336;
}

.issue-header {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.issue-icon {
    font-size: 1.8rem;
}

.issue-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #c62828;
    margin: 0;
}

.issue-body {
    padding: 25px;
}

.issue-body p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.issue-body p:last-child {
    margin-bottom: 0;
}

.issue-link {
    color: #E5491F;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed #E5491F;
}

.issue-link:hover {
    color: #c73d15;
    border-bottom-style: solid;
}

.issue-note {
    display: flex;
    gap: 12px;
    background: #e3f2fd;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    align-items: flex-start;
}

.note-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Recommendation Box */
.recommendation-box {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 15px 20px;
    border-radius: 6px;
    margin-top: 15px;
}

.recommendation-title {
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 8px;
}

.recommendation-box p {
    color: #1b5e20;
    margin: 0;
}

/* Sub Section */
.sub-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
}

.sub-section:last-child {
    margin-bottom: 0;
}

.sub-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.sub-icon {
    font-size: 1.5rem;
}

.sub-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.sub-content {
    padding-left: 0;
}

/* Warning Message */
.warning-message {
    display: flex;
    gap: 15px;
    background: #fff3e0;
    padding: 15px 20px;
    border-radius: 6px;
    border-left: 4px solid #ff9800;
    margin-bottom: 15px;
}

.warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-message p {
    color: #e65100;
    line-height: 1.6;
    margin: 0;
}

.info-text {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Check Pages List */
.check-pages-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.check-page-item {
    background: white;
    padding: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.check-page-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.check-page-item.high-probability {
    border-left: 4px solid #4caf50;
}

.check-page-item.medium-probability {
    border-left: 4px solid #ff9800;
}

.check-page-item.low-probability {
    border-left: 4px solid #9e9e9e;
}

.probability-indicator {
    background: #2196f3;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.check-link {
    color: #E5491F;
    text-decoration: none;
    word-break: break-all;
    flex-grow: 1;
}

.check-link:hover {
    color: #c73d15;
    text-decoration: underline;
}

/* Plugins Grid */
.plugins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.plugin-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.plugin-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.plugin-safe {
    border-left: 4px solid #4caf50;
}

.plugin-unknown {
    border-left: 4px solid #9e9e9e;
}

.plugin-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.plugin-icon {
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
}

.plugin-safe .plugin-icon {
    background: #e8f5e9;
    color: #4caf50;
}

.plugin-unknown .plugin-icon {
    background: #f5f5f5;
    color: #757575;
}

.plugin-name {
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    font-size: 1rem;
}

.plugin-status {
    color: #5a6c7d;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-specific-section {
        padding: 40px 20px;
    }

    .specific-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .specific-content {
        padding: 20px;
    }

    .info-message, .warning-message {
        flex-direction: column;
    }

    .form-link {
        flex-direction: column;
        align-items: flex-start;
    }

    .confidence-score {
        align-self: flex-start;
    }

    .check-page-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .probability-indicator {
        align-self: flex-start;
    }

    .plugins-grid {
        grid-template-columns: 1fr;
    }
}

@media print {
    .specific-item {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
}

/* Erkannte Seiten Section */
.detected-pages-section {
    padding: 60px 40px;
    background: #f8f9fa;
}

.detected-intro {
    margin-bottom: 30px;
}

.intro-box {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.intro-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.intro-text p {
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.pages-grid.w600{
    grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
}
.page-card {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.page-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-checkmark {
    color: #4caf50;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.page-url {
    color: #E5491F;
    text-decoration: none;
    word-break: break-all;
    font-size: 0.9rem;
}

.page-url:hover {
    color: #c73d15;
    text-decoration: underline;
}

/* Pages Counter - Updated */
.pages-counter {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.show-more-pages {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(33, 150, 243, 0.3);
}

.show-more-pages:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.show-more-pages:active {
    transform: translateY(0);
}

.toggle-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

/* More Pages Container */
.more-pages-container {
    margin-top: 20px;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.compact-pages-list {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 8px;
}

.compact-page-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 2px solid #99cc33;
    transition: all 0.2s ease;
}

.compact-page-item:hover {
    background: #e9ecef;
    transform: translateX(3px);
}

.compact-checkmark {
    color: #4caf50;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.compact-url {
    color: #E5491F;
    text-decoration: none;
    word-break: break-all;
    font-size: 0.85rem;
    line-height: 1.4;
}

.compact-url:hover {
    color: #c73d15;
    text-decoration: underline;
}

.remaining-count {
    text-align: center;
    padding: 20px;
    margin-top: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.remaining-count p {
    color: #5a6c7d;
    font-style: italic;
    margin: 0;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .compact-pages-list {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .show-more-pages {
        width: 100%;
        justify-content: center;
    }
}

.pages-counter p {
    color: #5a6c7d;
    font-style: italic;
    margin: 0;
    font-size: 1.1rem;
}

/* Volkstarif Section */
.volkstarif-section {
    padding: 60px 40px;
    background: white;
}

.volkstarif-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.volkstarif-header {
    background: linear-gradient(135deg, #99cc33 0%, #7ab82d 100%);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.volkstarif-icon {
    font-size: 2.5rem;
}

.volkstarif-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.volkstarif-content {
    padding: 40px;
}

.alert-important {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left: 5px solid #ff9800;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.alert-important p {
    color: #e65100;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

.subsection-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.checks-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.check-item {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.check-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.check-bullet {
    color: #99cc33;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.warning-box {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-left: 5px solid #f44336;
    border-radius: 8px;
    padding: 25px;
}

.warning-title {
    color: #c62828;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.warning-box p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 12px;
}

.warning-box p:last-child {
    margin-bottom: 0;
}

.warning-link {
    color: #E5491F;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed #E5491F;
}

.warning-link:hover {
    color: #c73d15;
    border-bottom-style: solid;
}

.new-scan-section {
    padding: 60px 40px;
    background: #f8f9fa;
}

.scan-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.scan-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
}

.scan-error-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(244, 67, 54, 0.15);
    display: flex;
    gap: 30px;
    align-items: center;
}

.error-visual {
    flex-shrink: 0;
    position: relative;
}

.error-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-icon {
    font-size: 4rem;
    position: relative;
    z-index: 2;
    animation: errorShake 2s ease-in-out infinite;
}

@keyframes errorShake {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px) rotate(-5deg);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px) rotate(5deg);
    }
}

.error-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(244, 67, 54, 0.3) 0%, rgba(244, 67, 54, 0) 70%);
    border-radius: 50%;
    animation: errorPulse 2s ease-out infinite;
}

@keyframes errorPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.error-content {
    flex-grow: 1;
}

.error-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #c62828;
    margin: 0 0 15px 0;
}

.error-message {
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0 0 25px 0;
    font-size: 1.05rem;
}

/* Error Actions */
.error-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-rescan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #f44336 0%, #e53935 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    align-self: flex-start;
}

.btn-rescan:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.4);
    background: linear-gradient(135deg, #e53935 0%, #d32f2f 100%);
}

.btn-rescan:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.3rem;
    animation: rotateIcon 2s linear infinite;
}

@keyframes rotateIcon {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.btn-rescan:hover .btn-icon {
    animation-duration: 0.8s;
}
.scan-info {
    margin-bottom: 30px;
}

.last-scan-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #e3f2fd;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.clock-icon {
    font-size: 1.5rem;
}

.last-scan-notice p {
    color: #1565c0;
    margin: 0;
}

.scan-description, .scan-detail {
    color: #5a6c7d;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 15px;
}

.email-highlight {
    color: #2196f3;
    font-weight: 600;
}

.scan-action {
    text-align: center;
    margin-bottom: 40px;
}

.btn-scan {
    background: linear-gradient(135deg, #99cc33, #7ab82d);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(153, 204, 51, 0.3);
    transition: all 0.3s ease;
}

.btn-scan:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(153, 204, 51, 0.4);
}

.previous-reports {
    border-top: 2px solid #dee2e6;
    padding-top: 30px;
}

.reports-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.reports-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.report-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.report-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.report-date {
    font-weight: 600;
    color: #2c3e50;
    min-width: 100px;
}

.report-link {
    color: #2196f3;
    text-decoration: none;
    font-weight: 600;
}

.report-link:hover {
    color: #1565c0;
    text-decoration: underline;
}

/* Additional Hints Section */
.additional-hints-section {
    padding: 60px 40px;
    background: white;
}

.hints-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hints-header {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hints-icon {
    font-size: 2.5rem;
}

.hints-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.hints-content {
    padding: 40px;
}

.hints-intro {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.faq-link {
    color: #E5491F;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #E5491F;
}

.faq-link:hover {
    color: #c73d15;
}

.topics-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.topics-intro {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.topic-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.topic-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.topic-content {
    flex-grow: 1;
}

.topic-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.topic-desc {
    color: #5a6c7d;
    font-size: 0.9rem;
    margin: 0;
}

/* Product By Section */
.product-by-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.product-container {
    max-width: 600px;
    margin: 0 auto;
}

.product-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
}

.company-info {
    margin-bottom: 40px;
}

.company-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.company-logo {
    max-width: 300px;
    height: auto;
    transition: transform 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.05);
}

.company-tagline {
    font-size: 1.2rem;
    font-weight: 700;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.company-disclaimer {
    font-size: 0.85rem;
    color: #7f8c8d;
    line-height: 1.6;
    font-style: italic;
}

.footer-links {
    padding-top: 30px;
    border-top: 2px solid #dee2e6;
}

.footer-link {
    color: #2196f3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #1565c0;
    text-decoration: underline;
}

.separator {
    color: #dee2e6;
    margin: 0 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .detected-pages-section,
    .volkstarif-section,
    .new-scan-section,
    .additional-hints-section,
    .product-by-section {
        padding: 40px 20px;
    }

    .pages-grid {
        grid-template-columns: 1fr;
    }

    .volkstarif-header,
    .hints-header {
        flex-direction: column;
        padding: 25px;
    }

    .volkstarif-content,
    .hints-content,
    .scan-card {
        padding: 25px;
    }

    .topics-grid {
        grid-template-columns: 1fr;
    }

    .btn-scan {
        width: 100%;
        padding: 15px;
    }

    .company-logo {
        max-width: 200px;
    }
}

@media print {
    .no-print {
        display: none !important;
    }
}

.final-url-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.url-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.url-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-grow: 1;
}

.url-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.url-value {
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
    word-break: break-all;
}

@media (max-width: 768px) {
    .final-url-notice {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .url-value {
        font-size: 1rem;
    }
}

/* Tools Warning Box */
.tools-warning-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px solid #ff9800;
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.15);
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.warning-icon-large {
    font-size: 2.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.warning-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e65100;
    margin: 0;
}

.warning-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.warning-main {
    color: #4e342e;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.warning-link {
    color: #E5491F;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid #E5491F;
    transition: all 0.3s ease;
}

.warning-link:hover {
    color: #c73d15;
    background: rgba(229, 73, 31, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
}

.warning-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.6);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

.note-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.warning-note p {
    margin: 0;
    color: #4e342e;
    line-height: 1.6;
}

.marker-ref {
    background: #e3f2fd;
    color: #073680;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
}

@media (max-width: 768px) {
    .tools-warning-box {
        padding: 15px 20px;
    }

    .warning-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .warning-icon-large {
        font-size: 2rem;
    }

    .warning-title {
        font-size: 1.1rem;
    }
}

/* Quality Group Container */
.quality-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Main Quality Item */
.quality-main {
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
}

/* Quality Subitems Container */
.quality-subitems {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 20px;
    margin-top: -8px;
}

.quality-subitem {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f1f8f4;
    border-radius: 6px;
    border-left: 3px solid #c8e6c9;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.quality-subitem:hover {
    background: #e8f5e9;
    transform: translateX(5px);
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.1);
}

.check-icon-small {
    color: #66bb6a;
    font-size: 1rem;
    font-weight: bold;
    flex-shrink: 0;
}

.quality-group .quality-main:hover {
    border-radius: 8px 8px 0 0;
}

.quality-subitems::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #c8e6c9 0%, transparent 100%);
    border-radius: 1px;
}

.quality-subitems {
    position: relative;
}

@media (max-width: 768px) {
    .quality-subitems {
        padding-left: 15px;
    }
    
    .quality-subitem {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

.findings-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    margin: 40px auto;
    max-width: 1000px;
}

.findings-header {
    background: linear-gradient(135deg, #cb0101 0%, #a00000 100%);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.findings-icon {
    font-size: 2.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.findings-title {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    line-height: 1.3;
}

.findings-body {
    padding: 35px 30px;
    background: #f8f9fa;
}

.indicators-title {
    text-align: center;
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.indicator-critical {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 2px solid #cb0101;
    color: #b71c1c;
}

.indicator-critical:hover {
    background: linear-gradient(135deg, #ffcdd2 0%, #ef9a9a 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(203, 1, 1, 0.2);
}

.indicator-warning {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px solid #ff9800;
    color: #e65100;
}

.indicator-warning:hover {
    background: linear-gradient(135deg, #ffe0b2 0%, #ffcc80 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.2);
}

.indicator-safe {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #4caf50;
    color: #2e7d32;
}

.indicator-safe:hover {
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.indicator-icon {
    font-size: 1.5rem;
    font-weight: 700;
}

.indicator-critical .indicator-icon {
    color: #cb0101;
}

.indicator-warning .indicator-icon {
    color: #ff9800;
}

.indicator-safe .indicator-icon {
    color: #4caf50;
}

.indicator-label {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .findings-container {
        margin: 30px 10px;
    }

    .findings-header {
        padding: 25px 20px;
        flex-direction: column;
        gap: 10px;
    }

    .findings-title {
        font-size: 1.3rem;
    }

    .findings-body {
        padding: 25px 20px;
    }

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

    .indicator {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .indicator-label {
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .findings-icon {
        font-size: 2rem;
    }

    .findings-title {
        font-size: 1.1rem;
    }

    .indicators-title {
        font-size: 1.1rem;
    }
}

@media print {
    .findings-container {
        box-shadow: none;
        border: 1px solid #dee2e6;
    }

    .indicator:hover {
        transform: none;
        box-shadow: none;
    }

    @keyframes pulse {
        0%, 100% {
            transform: none;
        }
    }
}

.indicator-warning {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px solid #ff9800;
    color: #e65100;
}

.indicator-warning:hover {
    background: linear-gradient(135deg, #ffe0b2 0%, #ffcc80 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.2);
}

.indicator-warning .indicator-icon {
    color: #ff9800;
}

.no-actions-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.success-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
    }
}

.no-actions-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.no-actions-text {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Recommendation Box */
.recommendation-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    border-left: 5px solid #ffc107;
    border-radius: 12px;
    padding: 25px;
    margin: 40px 0;
    text-align: left;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
    transition: all 0.3s ease;
}

.recommendation-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
}

.recommendation-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.recommendation-content {
    flex-grow: 1;
}

.recommendation-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f57c00;
    margin-bottom: 10px;
}

.recommendation-content p {
    color: #5d4037;
    line-height: 1.6;
    margin-bottom: 12px;
}

.recommendation-link {
    color: #E5491F;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.recommendation-link:hover {
    color: #c73d15;
    transform: translateX(5px);
}

/* Info Cards Grid */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #99cc33;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.info-card-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.info-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.info-card-text {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .success-icon-large {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .no-actions-title {
        font-size: 1.6rem;
    }

    .no-actions-text {
        font-size: 1rem;
    }

    .recommendation-box {
        flex-direction: column;
        text-align: center;
    }

    .recommendation-content {
        text-align: left;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }
}

/* Alternative: Kompaktere Variante */
.no-actions-container.compact {
    padding: 30px 20px;
}

.no-actions-container.compact .success-icon-large {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.no-actions-container.compact .no-actions-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.no-actions-container.compact .no-actions-text {
    font-size: 1rem;
    margin-bottom: 30px;
}

/* Pages Info Section */
.pages-info-section {
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pages-info-toggle {
    width: 100%;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid #2196f3;
    color: #1565c0;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-align: left;
}

.pages-info-toggle:hover {
    background: linear-gradient(135deg, #bbdefb 0%, #90caf9 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.toggle-icon {
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.toggle-text {
    flex-grow: 1;
}

.pages-info-content {
    margin-top: 15px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-content-inner {
    background: white;
    border: 2px solid #e3f2fd;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(33, 150, 243, 0.1);
}

.info-content-inner p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 15px;
}

.info-content-inner p strong {
    color: #2c3e50;
    font-weight: 700;
}

.info-requirements {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

.info-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-bullet {
    color: #2196f3;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    line-height: 1.4;
}

.info-list li span:last-child {
    color: #5a6c7d;
    line-height: 1.6;
}

.info-highlight {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 8px;
    border-left: 4px solid #ff9800;
    text-align: center;
}

.info-highlight p {
    color: #e65100;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 152, 0, 0.3);
}

.info-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .pages-info-toggle {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .info-content-inner {
        padding: 20px 15px;
    }

    .info-requirements {
        padding: 15px;
    }

    .info-bullet {
        font-size: 1rem;
    }
}

@media print {
    .pages-info-toggle {
        display: none;
    }

    .pages-info-content {
        display: block !important;
    }

    .info-cta-button {
        display: none;
    }
}

.tool-location {
    margin-left: auto;
    margin-right: 10px;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #2196f3;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 12px;
    background: #e3f2fd;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.location-link:hover {
    background: #bbdefb;
    color: #1565c0;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.2);
}

.tool-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2c3e50;
    flex-grow: 0;
}

@media (max-width: 768px) {
    .tool-header {
        gap: 10px;
    }

    .tool-location {
        margin-left: 0;
        margin-right: 0;
        flex-basis: 100%;
        order: 3;
    }

    .tool-badge {
        order: 2;
        margin-left: auto;
    }

    .location-link {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

/* Tool Uncertainty Notice */
.tool-uncertainty {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #fff3e0;
    border: 1px solid #ffb74d;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #e65100;
    margin-left: 10px;
}

.uncertainty-icon {
    font-size: 1.1rem;
    cursor: help;
    flex-shrink: 0;
}

.uncertainty-text {
    font-weight: 500;
    line-height: 1.3;
}

/* Hover effect for uncertainty notice */
.tool-uncertainty:hover {
    background: #ffe0b2;
    border-color: #ff9800;
}

/* Adjust tool-header spacing */
.tool-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.tool-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2c3e50;
    flex-grow: 0;
}

.tool-location {
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .tool-uncertainty {
        margin-left: 0;
        flex-basis: 100%;
        order: 3;
    }

    .tool-location {
        order: 2;
    }

    .tool-badge {
        order: 4;
        margin-left: auto;
    }

    .uncertainty-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .tool-header {
        gap: 8px;
    }

    .tool-location,
    .tool-uncertainty {
        flex-basis: 100%;
        justify-content: center;
    }

    .location-link {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .tool-uncertainty {
        padding: 8px 12px;
        justify-content: center;
    }

    .uncertainty-text {
        text-align: center;
    }

    .tool-badge {
        margin-left: 0;
        flex-basis: 100%;
        order: 5;
        text-align: center;
    }
}

/* Tools Additional Info Section */
.tools-additional-info {
    margin-top: 30px;
}

.tools-info-toggle {
    width: 100%;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #4caf50;
    color: #2e7d32;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-align: left;
}

.tools-info-toggle:hover {
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.tools-info-content {
    margin-top: 15px;
    animation: slideDown 0.3s ease-out;
}

.tools-info-content .info-content-inner {
    background: white;
    border: 2px solid #e8f5e9;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.1);
    overflow: hidden;
}

/* Info Blocks */
.info-block {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-bottom: 1px solid #e9ecef;
}

.info-block:last-child {
    border-bottom: none;
}

.info-technical {
    background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
}

.info-warning {
    background: linear-gradient(135deg, #fff3e0 0%, #ffecb3 100%);
}

.info-requirements {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    flex-direction: column;
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.info-text {
    flex-grow: 1;
}

.info-text p {
    margin-bottom: 12px;
    color: #5a6c7d;
    line-height: 1.6;
}

.info-text p:last-child {
    margin-bottom: 0;
}

.info-text strong {
    color: #2c3e50;
    font-weight: 700;
}

.info-text em {
    font-style: italic;
    color: #7f8c8d;
}

.supported-tools {
    padding: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    margin-top: 10px;
    font-size: 0.95rem;
}

.supported-tools strong {
    color: #e65100;
}

.requirements-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ce93d8;
}

.dsgvo-requirements {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
}

.requirement-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.requirements-list.reduced > .requirement-item{
        padding: 2px;
}
.requirement-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.req-check {
    color: #4caf50;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.4;
}

.req-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.req-content strong {
    color: #2c3e50;
    font-weight: 700;
    font-size: 0.95rem;
}

.req-details {
    color: #5a6c7d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.req-details .inline-link {
    color: #E5491F;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed #E5491F;
}

.req-details .inline-link:hover {
    color: #c73d15;
    border-bottom-style: solid;
}

@media (max-width: 768px) {
    .tools-info-toggle {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .info-block {
        flex-direction: column;
        gap: 15px;
        padding: 20px 15px;
    }

    .info-icon {
        font-size: 2rem;
    }

    .requirement-item {
        padding: 12px;
    }

    .req-check {
        font-size: 1.1rem;
    }
}

@media print {
    .tools-info-toggle {
        display: none;
    }

    .tools-info-content {
        display: block !important;
    }

    .info-block {
        page-break-inside: avoid;
    }
}

/* Cookie Alert Box */
.cookie-alert-box {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px solid #ff9800;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.cookie-alert-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #ff9800 0%, #f57c00 100%);
}

.alert-icon-large {
    font-size: 3rem;
    flex-shrink: 0;
    animation: cookieBounce 2s ease-in-out infinite;
}

@keyframes cookieBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-5deg);
    }
    75% {
        transform: translateY(-3px) rotate(5deg);
    }
}

.alert-content {
    flex-grow: 1;
}

.alert-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e65100;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-heading::after {
    content: '⚠';
    font-size: 1.1rem;
}

.alert-message {
    color: #5d4037;
    line-height: 1.7;
    margin: 0;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.alert-link {
    color: #E5491F;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid #E5491F;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.alert-link:hover {
    color: #c73d15;
    border-bottom-color: #c73d15;
    gap: 8px;
}

.link-arrow {
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.alert-link:hover .link-arrow {
    transform: translateX(3px);
}

/* Alternative kompakte Variante */
.cookie-alert-box.compact {
    flex-direction: row;
    align-items: center;
    padding: 20px 25px;
}

.cookie-alert-box.compact .alert-icon-large {
    font-size: 2.5rem;
}

.cookie-alert-box.compact .alert-heading {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cookie-alert-box.compact .alert-message {
    font-size: 1rem;
}

/* Pulse-Variante mit Aufmerksamkeits-Effekt */
.cookie-alert-box.pulse {
    animation: alertPulse 3s ease-in-out infinite;
}

@keyframes alertPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 152, 0, 0.15);
    }
    50% {
        box-shadow: 0 6px 25px rgba(255, 152, 0, 0.3);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-alert-box {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .alert-icon-large {
        font-size: 2.5rem;
        align-self: center;
    }

    .alert-heading {
        font-size: 1.1rem;
        text-align: center;
    }

    .alert-heading::after {
        display: none;
    }

    .alert-message {
        font-size: 0.95rem;
        text-align: center;
    }

    .alert-link {
        display: inline;
    }
}

@media print {
    .cookie-alert-box {
        border: 2px solid #ff9800;
        box-shadow: none;
        animation: none;
    }

    .alert-icon-large {
        animation: none;
    }
}
.hide {
display:none !important;
}
.px1 {
max-height:1px;
}

/* Datenschutzbeauftragter Section */
.dsb-section {
    padding: 60px 40px;
    background: white;
}

.dsb-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* DSB Info Card */
.dsb-info-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
    border-left: 5px solid #3f51b5;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(63, 81, 181, 0.15);
}

.dsb-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.dsb-text {
    flex-grow: 1;
}

.dsb-question {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a237e;
    margin: 0 0 15px 0;
}

.dsb-explanation {
    color: #283593;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

/* No DSB Info */
.dsb-no-dsb-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.info-icon {
    font-size: 2rem;
}

.info-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.info-description {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Template Box */
.dsb-template-box {
    background: white;
    border: 2px solid #e3f2fd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.template-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    padding: 15px 20px;
    color: white;
}

.template-icon {
    font-size: 1.5rem;
}

.template-label {
    flex-grow: 1;
    font-weight: 600;
    font-size: 1rem;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.copy-icon {
    font-size: 1rem;
}

.copy-text {
    font-size: 0.9rem;
}

/* Template Content */
.template-content {
    padding: 25px;
    background: #fafafa;
}

.template-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.template-text {
    color: #2c3e50;
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

.template-placeholder {
    display: inline-block;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px dashed #ff9800;
    border-radius: 6px;
    padding: 8px 12px;
    color: #e65100;
    font-weight: 700;
    font-style: italic;
    margin-top: 10px;
}

.placeholder-icon {
    margin-right: 5px;
}

/* Requirements */
.dsb-requirements {
    background: white;
    border-left: 4px solid #4caf50;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.req-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.req-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
}

.req-item.optional {
    opacity: 0.7;
}

.req-icon {
    color: #4caf50;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.req-item.optional .req-icon {
    color: #9e9e9e;
}

.req-item span:last-child {
    color: #5a6c7d;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .dsb-section {
        padding: 40px 20px;
    }

    .dsb-info-card {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .dsb-icon {
        font-size: 2.5rem;
        align-self: center;
    }

    .dsb-question {
        font-size: 1.2rem;
        text-align: center;
    }

    .dsb-explanation {
        font-size: 1rem;
        text-align: center;
    }

    .dsb-no-dsb-info {
        padding: 20px;
    }

    .template-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .copy-btn {
        width: 100%;
        justify-content: center;
    }

    .template-content {
        padding: 20px 15px;
    }

    .template-placeholder {
        display: block;
        margin-top: 15px;
    }
}

@media print {
    .copy-btn {
        display: none;
    }

    .dsb-template-box {
        border: 2px solid #2196f3;
        box-shadow: none;
    }

    .template-placeholder {
        border-style: solid;
    }
}

.scan-error-minimal {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border: 2px solid #f44336;
    border-radius: 12px;
    text-align: center;
}

.error-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f44336, #e53935);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.error-text {
    color: #5a6c7d;
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-rescan-minimal {
    display: inline-block;
    background: #f44336;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-rescan-minimal:hover {
    background: #e53935;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

.findings-title.level1 {
    background: #fff;
}

.findings-title.level2  {
    background: #fff;
}

.findings-title.level3  {
    background: #e13109;
}

.findings-header.level4 {
    background: #cb0101;
}

/* Report Logo Section */
.report-logo-section {
    background: white;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #e9ecef;
}

.report-main-logo {
    max-width: 400px;
    max-height: 120px;
    width: auto;
    height: auto;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.report-main-logo:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .report-logo-section {
        padding: 30px 15px;
    }

    .report-main-logo {
        max-width: 280px;
        max-height: 90px;
    }


}

@media (max-width: 480px) {
    .report-logo-section {
        padding: 25px 10px;
    }

    .report-main-logo {
        max-width: 240px;
        max-height: 75px;
    }
}

@media print {
    .report-logo-section {
        padding: 20px;
        border-bottom: 1px solid #ccc;
    }

    .report-main-logo {
        max-width: 300px;
        max-height: 100px;
    }

    .report-main-logo:hover {
        transform: none;
        opacity: 1;
    }


}

.scan-error-section {
    padding: 60px 40px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffebee 100%);
    border-top: 4px solid #f44336;
    border-bottom: 4px solid #f44336;
}

/* Scan Result Container */
.scan-result-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Reading Error Box */
.reading-error-box {
    background: white;
    border: 2px solid #f44336;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(244, 67, 54, 0.15);
}

.error-header-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ffebee;
}

.error-icon-large {
    font-size: 3rem;
    animation: errorShake 2s ease-in-out infinite;
}

.reading-error-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #c62828;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Error Info Box */
.error-info-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.error-reference {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #e3f2fd;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

.reference-icon {
    font-size: 1.5rem;
}

.reference-link {
    color: #1565c0;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid #1565c0;
    transition: all 0.3s ease;
}

.reference-link:hover {
    color: #0d47a1;
    border-bottom-color: #0d47a1;
}


.date-icon {
    font-size: 1.3rem;
}

.date-label {
    font-weight: 600;
    color: #5a6c7d;
}

.date-value {
    color: #2c3e50;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.error-action-box {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.befund-text {
    font-size: 1.8rem;
    font-weight: 700;
}

.befund-title.level1 .befund-text {
    color: #4caf50;
}

.befund-title.level2 .befund-text {
    color: #ff9800;
}

.befund-title.level3 .befund-text {
    color: #e13109;
}

.befund-title.level4 .befund-text {
    color: #cb0101;
}

.indicators-section {
    padding: 30px;
}

.indicators-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e9ecef;
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.indicator-positive {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 4px solid #4caf50;
}

.indicator-negative {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-left: 4px solid #f44336;
}

.indicator-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.indicator-icon {
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.indicator-positive .indicator-icon {
    color: #4caf50;
}

.indicator-negative .indicator-icon {
    color: #f44336;
}

.indicator-text {
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .scan-error-section {
        padding: 40px 20px;
    }

    .reading-error-box {
        padding: 25px 20px;
    }

    .error-header-section {
        flex-direction: column;
        text-align: center;
    }

    .reading-error-title {
        font-size: 1.3rem;
    }

    .error-reference {
        flex-direction: column;
        text-align: center;
    }

    .scan-date-info {
        flex-direction: column;
        text-align: center;
    }

    .befund-header {
        padding: 20px;
    }

    .befund-label {
        font-size: 1rem;
    }

    .befund-text {
        font-size: 1.4rem;
    }

    .indicators-section {
        padding: 20px;
    }

    .indicators-grid {
        grid-template-columns: 1fr;
    }

    .error-icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .error-icon {
        font-size: 3rem;
    }

    .error-title {
        font-size: 1.5rem;
    }

    .error-message {
        font-size: 1rem;
    }

    .btn-rescan {
        width: 100%;
        align-self: stretch;
    }

    .scan-info {
        align-self: stretch;
        justify-content: center;
    }

    .details-toggle {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .details-content {
        padding: 20px 15px;
    }
}

@media print {
    .scan-error-section {
        display: none;
    }
}

.error-details {
    max-width: 900px;
    margin: 30px auto 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(244, 67, 54, 0.1);
}

.details-toggle {
    width: 100%;
    background: #fff3e0;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #e65100;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.details-toggle:hover {
    background: #ffe0b2;
}

.details-toggle .toggle-icon {
    font-size: 1.3rem;
    font-weight: 700;
}

.details-content {
    padding: 25px;
    animation: slideDown 0.3s ease-out;
}

.error-reasons {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #ff9800;
}

.reason-icon {
    color: #ff9800;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.reason-item span:last-child {
    color: #5a6c7d;
    line-height: 1.5;
}
.findings-help {
    background: #fff;
    border-top: 1px solid #e9ecef;
    padding: 16px 30px;
    display: flex;
    justify-content: flex-end;
}

.findings-help-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: #f0f4ff;
    border: 1px solid #c7d4f5;
    border-radius: 20px;
    text-decoration: none;
    color: #3a5bbf;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.findings-help-link:hover {
    background: #dce6ff;
    box-shadow: 0 2px 8px rgba(58, 91, 191, 0.18);
    transform: translateY(-1px);
}

.findings-help-icon {
    font-size: 1rem;
}

.findings-help-arrow {
    font-size: 0.85rem;
    opacity: 0.7;
}