/* SSL Checker Stilleri */

/* Status Card - BÃ¼yÃ¼k Durum KartÄ± */
.ssl-status-card {
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border: 2px solid;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
}

.ssl-status-card.status-valid {
    border-color: #22c55e;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.ssl-status-card.status-warning {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

.ssl-status-card.status-expired {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.status-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.status-content {
    flex: 1;
}

.status-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.status-desc {
    font-size: 1rem;
    color: #475569;
    margin: 0;
}

.status-desc strong {
    color: #1e293b;
    font-weight: 700;
}

/* SSL Grid */
.ssl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* SSL Card */
.ssl-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s;
}

.ssl-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.card-header {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.card-body {
    padding: 1.5rem;
}

/* Info Row */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f1f5f9;
    gap: 1rem;
}

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

.info-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    flex-shrink: 0;
    min-width: 140px;
}

.info-value {
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 500;
    text-align: right;
    word-break: break-all;
}

.info-value.highlight {
    color: #2563eb;
    font-weight: 700;
}

/* SAN Card */
.san-card {
    grid-column: 1 / -1;
}

.san-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.san-badge {
    background: #eff6ff;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #dbeafe;
    transition: all 0.2s;
}

.san-badge:hover {
    background: #dbeafe;
    transform: translateY(-1px);
}

/* Code styling */
code {
    background: #f1f5f9;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.85rem;
    color: #334155;
    border: 1px solid #e2e8f0;
}

/* Responsive */
@media (max-width: 768px) {
    .ssl-status-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

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

    .status-title {
        font-size: 1.25rem;
    }

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

    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .info-label {
        min-width: auto;
    }

    .info-value {
        text-align: left;
    }
}
/* Domain Header */
.domain-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.domain-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    word-break: break-word;
}

.domain-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

/* Full Width Info Row (Seri Numarasý için) */
.info-row-full {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.info-row-full .info-label {
    min-width: auto;
}

.info-row-full .info-value {
    text-align: left;
    width: 100%;
}

.serial-number {
    background: #f8fafc;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.85rem;
    color: #475569;
    border: 1px solid #e2e8f0;
    word-break: break-all;
    display: block;
}


/* CA Badge (Sertifika Otoritesi) */
.ca-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #3b82f6;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.ca-icon {
    font-size: 1.75rem;
}

.ca-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e40af;
}


/* Sertifika Özellikleri Kartý */
.ssl-features-card {
    grid-column: 1 / -1;
}

.features-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    border: 2px solid;
    transition: all 0.2s;
}

.feature-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* DV Badge (Mavi) */
.badge-dv {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #3b82f6;
}

/* OV Badge (Yeþil) */
.badge-ov {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-color: #22c55e;
}

/* EV Badge (Altýn) */
.badge-ev {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border-color: #f59e0b;
}

/* Key Badge (Mor) */
.badge-key {
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
    border-color: #a855f7;
}

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

.badge-content {
    flex: 1;
}

.badge-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.badge-desc {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 768px) {
    .features-badges {
        grid-template-columns: 1fr;
    }
}


/* Bilgilendirme Bölümü Boþluk */
.info-section {
    margin-top: 3rem;
}

