/**
 * Appgetters Download Bundle
 * Merged: downloads.css + virustotal-scan-modal.css + virustotal-detection-report.css
 * Eliminates 3 round trips → 1 request for ~7.7 KiB combined
 */

/* ============================================================================
 * SECTION 1: Downloads Page Styles (from downloads.css)
 * ============================================================================ */

/* Download Page Wrapper */
.agileone-download-page-wrap {
	max-width: 100%;
}

/* Download Page Header */
.agileone-download-page-header {
        display: flex;
        gap: 5px;
        /* align-items: flex-start;*/
        margin-bottom: 10px;
        padding: 10px;
        /* background: #f9f9f9;*/
        border-radius: 8px;
}

.agileone-download-page-header:hover {
	border-color: #667eea;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.agileone-download-header-left {
        display: grid;
        grid-template-columns: 70px 1fr;
        gap: 2px;
        align-items: start;
        flex: 1;
        min-height: 65px;
}

.agileone-download-page-icon {
        width: 65px;
        height: 65px;
        background: white;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        flex-shrink: 0;
}

.agileone-download-page-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 2px;
        aspect-ratio: 1;
}

.agileone-download-page-info {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.agileone-download-page-info h1,
.agileone-download-page-info h2 {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 8px 0;
	color: #1a1a1a;
	line-height: 1.4;
}

.agileone-download-page-info h1 a,
.agileone-download-page-info h2 a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.agileone-download-page-info h1 a:hover,
.agileone-download-page-info h2 a:hover {
	color: #667eea;
}

.agileone-download-page-meta {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        font-size: 13px;
        color: #121111;
}

.agileone-download-page-meta li {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
}

.agileone-download-page-meta strong {
	color: #333;
	font-weight: 600;
}

/* Download Buttons */
.agileone-download-btn {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white !important;
	padding: 8px 14px;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	border: 0;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.agileone-download-btn:hover {
	background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
	color: white !important;
}

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

.agileone-download-btn svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

/* Processing state */
.agileone-download-btn.appgetters-download-processing {
	background: #999;
	cursor: wait;
	opacity: 0.7;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	transform: none !important;
	pointer-events: none;
}

.agileone-download-btn.appgetters-download-processing:hover {
	background: #999;
	transform: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Download button container */
.agileone-download-page-header > div:last-child {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	min-width: auto;
}

/* Features Section */
.agileone-download-buttons-section {
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 25px;
	margin-bottom: 10px;
}

.agileone-download-section-inner {
	max-width: 100%;
}

.agileone-download-tagline {
	font-size: 16px;
        color: #101010;
        margin: 0 0 20px 0;
        font-weight: 600;
}

.agileone-download-features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	gap: 30px;
	flex-wrap: nowrap;
}

.agileone-feature-item {
	display: flex;
	align-items: center;
	gap: 1px;
	font-size: 14px;
	color: #333;
}

.agileone-feature-icon {
	width: 20px;
	height: 20px;
	color: #667eea;
	flex-shrink: 0;
	stroke-width: 2;
}

/* Download Page Details */
.agileone-download-page-details {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 25px;
	margin-bottom: 30px;
}

.agileone-download-page-detail-col h3 {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 15px 0;
	color: #1a1a1a;
}

.agileone-download-page-detail-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.agileone-download-page-detail-col li {
	font-size: 14px;
	color: #000;
	margin: 0;
}

.agileone-download-page-detail-col strong {
	color: #1a1a1a;
	font-weight: 600;
}

/* Back Link */
.agileone-download-page-back {
	margin-top: 30px;
}

.agileone-back-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: #667eea;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	font-size: 14px;
}

.agileone-back-link:hover {
	color: #764ba2;
}

/* Responsive Design - Downloads */
@media (max-width: 1024px) {
	.agileone-download-page-header {
		flex-direction: column;
		gap: 20px;
	}

	.agileone-download-page-details {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.agileone-download-page-header {
		padding: 20px;
		gap: 15px;
	}

	.agileone-download-page-header > div:last-child {
		width: 100%;
		justify-content: center;
	}

	.agileone-download-header-left {
		grid-template-columns: 75px 1fr;
		gap: 12px;
	}

	.agileone-download-page-icon {
		width: 65px;
		height: 65px;
	}

	.agileone-download-page-info h1,
	.agileone-download-page-info h2 {
		font-size: 18px;
	}

	.agileone-download-page-meta {
		gap: 15px;
		font-size: 12px;
	}

	.agileone-download-btn {
		padding: 12px 24px;
		font-size: 15px;
		width: auto;
		max-width: 100%;
		height: auto;
		min-height: 44px;
	}

	.agileone-download-buttons-section,
	.agileone-download-page-details {
		padding: 20px;
	}

	.agileone-download-features {
		gap: 20px;
	}

	.agileone-download-page-details {
		grid-template-columns: 1fr;
	}

	.agileone-download-page-detail-col h3 {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.agileone-download-page-header {
		padding: 15px;
		gap: 12px;
	}

	.agileone-download-header-left {
		grid-template-columns: 65px 1fr;
		gap: 10px;
	}

	.agileone-download-page-icon {
		width: 65px;
		height: 65px;
	}

	.agileone-download-page-info h1,
	.agileone-download-page-info h2 {
		font-size: 16px;
	}

	.agileone-download-page-meta {
		gap: 10px;
		font-size: 11px;
	}

	.agileone-download-btn {
		padding: 12px 16px;
		font-size: 14px;
		width: auto;
		max-width: 100%;
		height: auto;
		min-height: 44px;
	}

	.agileone-download-btn svg {
		width: 20px;
		height: 20px;
	}

	.agileone-download-features {
		flex-direction: row;
		gap: 12px;
	}

	.agileone-download-buttons-section,
	.agileone-download-page-details {
		padding: 15px;
	}

	.agileone-download-page-details {
		grid-template-columns: 1fr;
	}

	.agileone-download-page-detail-col h3 {
		font-size: 16px;
		margin-bottom: 12px;
	}
}

/* ============================================================================
 * SECTION 2: VirusTotal Scan Modal Styles (from virustotal-scan-modal.css)
 * ============================================================================ */

/* Modal Container */
#appgetters-security-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#appgetters-security-modal.active {
    display: flex;
}

.security-modal-content {
    background: white;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Modal Header */
.appgetters-security-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px 8px 0 0;
    gap: 12px;
}

.appgetters-security-modal-header-compact {
    padding: 12px 16px;
}

.appgetters-security-header-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    overflow: hidden;
}

.appgetters-security-header-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.appgetters-security-header-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.appgetters-security-software-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.appgetters-security-software-details {
    display: flex;
    gap: 8px;
    font-size: 12px;
    opacity: 0.9;
    flex-wrap: wrap;
}

.appgetters-security-software-details span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 0 1 auto;
}

.appgetters-security-modal-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.9;
    flex-shrink: 0;
}

.appgetters-security-modal-close:hover {
    transform: scale(1.15);
    opacity: 1;
}

.appgetters-security-modal-close svg {
    width: 20px;
    height: 20px;
}

/* Modal Body */
#virustotal-scan-content {
    padding: 10px;
}

/* Safe Verification Section - When No Detections */
.safe-verification {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 24px 20px;
	border-radius: 8px;
	margin-bottom: 10px;
	background: linear-gradient(135deg, #f1f5fe 0%, #e8f5e9 100%);
	border: 2px solid #4caf50;
	border-left: 6px solid #4caf50;
	text-align: center;
}

.safe-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f5f5f5;
	border-radius: 50%;
	border: 3px solid #4caf50;
	overflow: hidden;
}

.safe-icon-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 4px;
}

.safe-message {
	flex: 1;
}

.safe-message p {
	margin: 0;
	padding: 4px 0;
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
	display: flex;
	align-items: center;
	gap: 6px;
}

/* Safe Verification List */
.safe-verification-list {
	list-style: none;
	padding: 0;
	margin: 8px 0;
	width: 100%;
}

.safe-verification-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 0;
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
}

.check-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #4caf50;
	width: 20px;
	height: 20px;
}

.check-icon svg {
	width: 100%;
	height: 100%;
}

.safe-message .verified-text {
	font-size: 12px;
	font-weight: 500;
	color: #4caf50;
	margin-top: 4px;
	display: block;
}

/* Safety Analysis Section - Detection Summary Box */
.safety-analysis {
	padding: 16px 18px;
	border-radius: 8px;
	margin-bottom: 16px;
	background-color: #f5f5f5;
	border-left: 4px solid #999;
}

.safety-analysis .summary-line {
	margin: 0 0 12px 0;
	font-size: 14px;
	color: #333;
}

.safety-analysis .summary-text {
	margin: 0 0 8px 0;
	font-size: 14px;
	color: #555;
	line-height: 1.5;
}

.safety-analysis .summary-text:last-child {
	margin-bottom: 0;
}

.safety-analysis .count-number {
	font-size: 36px;
	font-weight: 700;
}

.safety-analysis .vt-separator {
	font-size: 20px;
	color: #888;
	margin: 0 6px;
}

.safety-analysis .vt-total {
	font-size: 36px;
	font-weight: 700;
	color: #555;
}

.safety-analysis.safe {
	background-color: #e8f5e9;
	border-left: 4px solid #4caf50;
}

.safety-analysis.safe .count-number {
	color: #2e7d32;
}

.safety-analysis.unsafe {
	background-color: #ffebee;
	border-left: 4px solid #f44336;
}

.safety-analysis.unsafe .count-number {
	color: #c62828;
}

.safety-analysis.suspicious {
	background-color: #fff3e0;
	border-left: 4px solid #ff9800;
}

.safety-analysis.suspicious .count-number {
	color: #e65100;
}

/* Security & Download Integrity Notice */
.security-integrity-notice {
	margin-top: 12px;
	padding: 12px;
	background-color: #f0f4f8;
	border-radius: 6px;
	border-left: 4px solid #1976d2;
}

.security-integrity-notice.safe {
	background-color: #e8f5e9;
	border-left-color: #4caf50;
}

.security-integrity-notice.safe .notice-title {
	color: #2e7d32;
}

.security-integrity-notice.safe .notice-title svg {
	color: #4caf50;
}

/* Inline safe verification - No Virus, No Spyware, No Malware in one line */
.safe-verification-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 12px;
	padding: 10px 12px;
	background-color: #e8f5e9;
	border-radius: 6px;
}

.safe-verification-inline .check-item {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-weight: 600;
	color: #2e7d32;
}

.safe-verification-inline .check-item svg {
	color: #4caf50;
	flex-shrink: 0;
}

.notice-title {
	font-size: 13px;
	font-weight: 700;
	color: #1565c0;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.notice-icon {
	width: 16px;
	height: 16px;
	color: #1565c0;
	flex-shrink: 0;
}

.notice-content {
	font-size: 12px;
	color: #424242;
	line-height: 1.5;
}

.notice-content p {
	margin: 4px 0;
	padding: 0;
}

/* VirusTotal Counter Styling */
.vt-total {
	font-size: 65px;
	font-weight: 600;
	color: #555;
	display: inline-block;
}

/* Detection List */
.detection-list {
	margin-bottom: 10px;
	padding: 16px;
	background-color: #fafafa;
	border-radius: 6px;
	border: 1px solid #e0e0e0;
}

.detection-list h4 {
	margin: 0 0 12px 0;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.detection-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.detection-list li {
	display: flex;
	gap: 8px;
	padding: 8px 0;
	border-bottom: 1px solid #f0f0f0;
	font-size: 13px;
	align-items: baseline;
	flex-wrap: wrap;
}

.detection-list li:last-child {
	border-bottom: none;
}

.detection-list li.malicious {
	color: #f44336;
}

.detection-result {
	font-weight: 600;
	color: #f44336;
}

.detection-vendor {
	color: #666;
	font-size: 12px;
}

/* Scan Statistics */
.scan-statistics {
    margin-bottom: 24px;
}

.scan-statistics h4 {
    margin: 0 0 16px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.stat-card:hover {
    border-color: #667eea;
    background-color: #f5f7ff;
}

.stat-card.stat-danger {
    background-color: #ffebee;
    border-color: #ef5350;
}

.stat-card.stat-warning {
    background-color: #fff3e0;
    border-color: #ffb74d;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card.stat-danger .stat-value {
    color: #f44336;
}

.stat-card.stat-warning .stat-value {
    color: #ff9800;
}

.stat-label {
    font-size: 12px;
    color: #666;
    text-align: center;
    font-weight: 500;
}

/* File Hash Section */
.file-hash-section {
	margin-bottom: 10px;
	padding: 12px;
	background-color: #f9f9f9;
	border-radius: 6px;
	border: 1px solid #e0e0e0;
}

.hash-label {
	font-size: 12px;
	font-weight: 600;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
}

.hash-value {
	font-size: 12px;
	font-family: 'Courier New', monospace;
	color: #333;
	word-break: break-all;
	background-color: white;
	padding: 8px;
	border-radius: 4px;
	border: 1px solid #f0f0f0;
}

/* Scan Actions */
.scan-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}

.btn {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-virustotal {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.btn-virustotal:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Loading State */
.scan-loading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    min-height: 200px;
    gap: 16px;
}

.scan-loading-spinner {
    display: block;
    width: 32px;
    height: 32px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.scan-loading p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Error State */
.scan-error {
    padding: 20px;
    background-color: #ffebee;
    border: 1px solid #ef5350;
    border-radius: 6px;
    color: #c62828;
}

.scan-error p {
    margin: 0;
    font-size: 14px;
}

/* Security Check Icon */
.appgetters-security-check-icon {
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.appgetters-security-check-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 1px rgb(249 249 249 / 40%));
}

/* Responsive Design - Scan Modal */
@media (max-width: 640px) {
    .security-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .appgetters-security-modal-header {
        flex-wrap: wrap;
        padding: 12px;
    }

    .appgetters-security-header-icon {
        width: 40px;
        height: 40px;
        border-radius: 4px;
    }

    .appgetters-security-software-name {
        font-size: 14px;
    }

    .appgetters-security-software-details {
        font-size: 11px;
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .scan-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .safe-verification {
    	flex-direction: column;
    	text-align: center;
    	gap: 12px;
    	padding: 16px;
    }

    .safe-icon {
    	width: 50px;
    	height: 50px;
    	border: 2px solid #4caf50;
    }

    .safe-message p {
    	font-size: 13px;
    }

    .safe-verification-list li {
    	font-size: 13px;
    	padding: 4px 0;
    }

    .check-icon {
    	width: 18px;
    	height: 18px;
    }

    .safety-analysis {
    	padding: 14px;
    }

    .safety-analysis .summary-text {
    	font-size: 13px;
    }

    .safety-analysis .count-number,
    .safety-analysis .vt-total {
    	font-size: 28px;
    }

    .file-hash-section {
    	padding: 10px;
    	margin-bottom: 16px;
    }

    .hash-value {
    	font-size: 11px;
    }

    .scan-actions {
    	flex-direction: column;
    }

    .btn {
    	width: 100%;
    }
    }

    /* Print Styles */
@media print {
    #appgetters-security-modal {
        display: none;
    }
}

/* ============================================================================
 * SECTION 3: VirusTotal Detection Report (from virustotal-detection-report.css)
 * ============================================================================ */

/* Detection Report Container */
.appgetters-detection-report {
	max-width: 100%;
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
}

/* Report Header */
.appgetters-detection-report .report-header {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px;
	border-bottom: 1px solid #e0e0e0;
	background: #fafafa;
}

.appgetters-detection-report .report-icon {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: 8px;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border: 1px solid #e0e0e0;
}

.appgetters-detection-report .report-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 4px;
}

.appgetters-detection-report .report-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.appgetters-detection-report .report-title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: #1a1a1a;
}

.appgetters-detection-report .report-developer {
	font-size: 14px;
	color: #666;
}

.appgetters-detection-report .report-version {
	font-size: 13px;
	color: #999;
}

/* Threat Status Section */
.appgetters-detection-report .threat-status {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 30px 20px;
	border-bottom: 1px solid #e0e0e0;
}

.appgetters-detection-report .threat-icon-wrapper {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.threat-icon-svg {
	width: 100%;
	height: 100%;
}

.appgetters-detection-report .threat-message {
	flex: 1;
}

.appgetters-detection-report .threat-message h2 {
	margin: 0 0 8px 0;
	font-size: 24px;
	font-weight: 600;
}

.appgetters-detection-report .threat-message p {
	margin: 4px 0;
	font-size: 14px;
	color: #666;
}

.appgetters-detection-report .scan-date {
	margin-top: 8px;
	font-size: 12px;
	color: #999;
}

/* Threat status variants */
.threat-status.threat-safe .threat-message h2 {
	color: #4caf50;
}

.threat-status.threat-unsafe .threat-message h2 {
	color: #f44336;
}

.threat-status.threat-suspicious .threat-message h2 {
	color: #ff9800;
}

/* Detection List */
.appgetters-detection-report .detection-list {
	padding: 20px;
	border-bottom: 1px solid #e0e0e0;
}

.appgetters-detection-report .detection-list h4 {
	margin: 0 0 12px 0;
	font-size: 13px;
	font-weight: 600;
	color: #1a1a1a;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.appgetters-detection-report .detection-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.appgetters-detection-report .detection-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border-radius: 4px;
	font-size: 13px;
	background: #f5f5f5;
}

.appgetters-detection-report .detection-list li.malicious {
	background: #ffebee;
	border-left: 3px solid #f44336;
}

.appgetters-detection-report .detection-list li.suspicious {
	background: #fff3e0;
	border-left: 3px solid #ff9800;
}

.appgetters-detection-report .detection-result {
	font-weight: 600;
	font-size: 12px;
	padding: 2px 6px;
	border-radius: 3px;
	background: rgba(0, 0, 0, 0.05);
	flex-shrink: 0;
}

.appgetters-detection-report .detection-list li.malicious .detection-result {
	background: rgba(244, 67, 54, 0.1);
	color: #f44336;
}

.appgetters-detection-report .detection-list li.suspicious .detection-result {
	background: rgba(255, 152, 0, 0.1);
	color: #ff9800;
}

.appgetters-detection-report .detection-vendor {
	flex: 1;
	color: #1a1a1a;
}

/* Detection Statistics */
.appgetters-detection-report .detection-stats {
	padding: 20px;
}

.appgetters-detection-report .detection-stats h4 {
	margin: 0 0 12px 0;
	font-size: 13px;
	font-weight: 600;
	color: #1a1a1a;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.appgetters-detection-report .stat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	gap: 12px;
}

.appgetters-detection-report .stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 12px;
	border-radius: 4px;
	background: #f5f5f5;
	text-align: center;
}

.appgetters-detection-report .stat-item.malicious {
	background: #ffebee;
}

.appgetters-detection-report .stat-item.suspicious {
	background: #fff3e0;
}

.appgetters-detection-report .stat-item.undetected {
	background: #e8f5e9;
}

.appgetters-detection-report .stat-item.timeout {
	background: #f3e5f5;
}

.appgetters-detection-report .stat-value {
	display: block;
	font-size: 24px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 4px;
}

.appgetters-detection-report .stat-item.malicious .stat-value {
	color: #f44336;
}

.appgetters-detection-report .stat-item.suspicious .stat-value {
	color: #ff9800;
}

.appgetters-detection-report .stat-item.undetected .stat-value {
	color: #4caf50;
}

.appgetters-detection-report .stat-item.timeout .stat-value {
	color: #9c27b0;
}

.appgetters-detection-report .stat-label {
	display: block;
	font-size: 12px;
	font-weight: 500;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

/* Responsive Design - Detection Report */
@media (max-width: 768px) {
	.appgetters-detection-report .report-header {
		flex-direction: column;
		gap: 12px;
	}

	.appgetters-detection-report .report-icon {
		width: 70px;
		height: 70px;
	}

	.appgetters-detection-report .threat-status {
		flex-direction: column;
		text-align: center;
	}

	.appgetters-detection-report .stat-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.appgetters-detection-report .report-header {
		padding: 15px;
	}

	.appgetters-detection-report .threat-status {
		padding: 20px 15px;
	}

	.appgetters-detection-report .detection-list,
	.appgetters-detection-report .detection-stats {
		padding: 15px;
	}

	.appgetters-detection-report .stat-grid {
		grid-template-columns: 1fr;
	}

	.appgetters-detection-report .threat-message h2 {
		font-size: 20px;
	}
}
