/* Security Scan Aracı Özel Stilleri */

/* Tablo */
.security-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    margin-top: 20px;
}

.security-table th {
    text-align: left;
    padding: 12px 20px;
    color: #64748b;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.security-table td {
    background: white;
    padding: 16px 20px;
    vertical-align: middle;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
}

.security-table tr td:first-child {
    border-left: 1px solid #e2e8f0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    font-weight: 500;
    color: #1e293b;
}

.security-table tr td:last-child {
    border-right: 1px solid #e2e8f0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Status Badges */
.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-pass {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.status-warning {
    background: #fef9c3;
    color: #854d0e;
    border: 1px solid #fde047;
}

.status-fail {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.status-info {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.file-icon {
    margin-right: 8px;
    font-size: 1.1em;
    opacity: 0.9;
}

/* Sonuç Kutusu (Grade Box) */
.scan-grade-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
    text-align: center;
}

.grade-container-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grade-circle-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.grade-title {
    margin-top: 15px;
    font-size: 1.5rem;
    color: #1e293b;
}

.grade-desc {
    color: #64748b;
    margin-top: 5px;
}

/* Butonlar */
.btn-report-wrapper {
    margin-top: 20px;
}

.btn-report {
    padding: 10px 20px;
    background: #fff;
    color: #334155;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-report:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* CTA Box */
.cta-security-box {
    background: linear-gradient(to right, #eff6ff, #fff);
    border: 1px solid #bfdbfe;
    margin-top: 3rem;
    border-radius: 12px;
    padding: 25px;
}

.cta-flex {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.cta-content {
    flex: 1;
    min-width: 300px;
}

.cta-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1e40af;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-desc {
    color: #334155;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-whatsapp {
    text-decoration: none;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px -1px rgba(37, 211, 102, 0.3);
}

.btn-email {
    text-decoration: none;
    background: white;
    color: #334155;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-icon-bg {
    font-size: 5rem;
    opacity: 0.1;
}