/* DMARC Analiz AracÄ± Stilleri */

/* Ham KayÄ±t Kutusu */
.dmarc-raw-box {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.dmarc-raw-text {
    font-family: 'Fira Code', 'Roboto Mono', monospace;
    background: #f8fafc;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #334155;
    font-size: 0.95rem;
    word-break: break-all;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-copy-sm {
    background: white;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s;
    margin-left: 10px;
    flex-shrink: 0;
}

.btn-copy-sm:hover {
    background: #e2e8f0;
    color: #1e293b;
}

/* Analiz Grid */
.dmarc-tags {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.dmarc-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.dmarc-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Sol Kenar Renk KodlarÄ± */
.dmarc-item.pass {
    border-left: 4px solid #22c55e;
}

/* p=reject */
.dmarc-item.warning {
    border-left: 4px solid #f97316;
}

/* p=quarantine */
.dmarc-item.neutral {
    border-left: 4px solid #94a3b8;
}

/* p=none */
.dmarc-item.info {
    border-left: 4px solid #3b82f6;
}

/* DiÄŸer taglar */

/* Tag Etiketi */
.dmarc-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 60px;
    text-align: center;
    flex-shrink: 0;
}

.pass .dmarc-tag {
    background: #dcfce7;
    color: #16a34a;
}

.warning .dmarc-tag {
    background: #ffedd5;
    color: #ea580c;
}

.info .dmarc-tag {
    background: #dbeafe;
    color: #2563eb;
}

/* Ä°Ã§erik */
.dmarc-content {
    flex: 1;
}

.dmarc-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.35rem;
    word-break: break-all;
}

.dmarc-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
}

.dmarc-desc strong {
    color: #334155;
    font-weight: 600;
}
/* Durum Kutusu (Propagation Benzeri) */
.status-box {
    background: #f0fdf4; /* Açýk yeþil zemin */
    border: 1px solid #dcfce7;
    border-radius: 6px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #15803d;
    font-weight: 600;
    font-size: 0.95rem;
}

