/* SPF Analiz AracÄ± Stilleri */

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

.spf-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 */
.spf-mechanisms {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.spf-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;
}

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

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

.spf-item.neutral {
    border-left: 4px solid #64748b;
}

.spf-item.softfail {
    border-left: 4px solid #f97316;
}

.spf-item.fail {
    border-left: 4px solid #ef4444;
}

/* Prefix Ä°konu */
.spf-prefix {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pass .spf-prefix {
    background: #dcfce7;
    color: #16a34a;
}

/* + */
.neutral .spf-prefix {
    background: #f1f5f9;
    color: #64748b;
}

/* ? */
.softfail .spf-prefix {
    background: #ffedd5;
    color: #ea580c;
}

/* ~ */
.fail .spf-prefix {
    background: #fee2e2;
    color: #dc2626;
}

/* - */

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

.spf-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
}

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

.spf-desc {
    font-size: 0.85rem;
    color: #64748b;
}

.spf-desc strong {
    color: #475569;
}
/* 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;
}


/* Tab Yapýsý */
.tabs-container {
    margin-bottom: 2rem;
}

.tabs-header {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 2rem;
}

.tab-button {
    padding: 1rem 2rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: #64748b;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-button:hover {
    color: #3b82f6;
    background: #f8fafc;
}

.tab-button.active {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
}

