/* IP Analiz Aracı Stilleri */

/* Layout */
.ip-layout-spacing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .ip-layout-spacing {
        grid-template-columns: 1fr;
    }
}

/* IP Kartı */
.ip-address-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ip-address-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ip-address-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.ip-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: #475569;
    font-weight: 500;
}

.ip-location img {
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 24px;
    height: auto;
}

/* Traceroute Kartı */
.traceroute-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom right, #ffffff, #f8fafc);
}

.traceroute-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.traceroute-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.traceroute-desc {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.traceroute-btn {
    width: 100%;
    justify-content: center;
}

.traceroute-status {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    height: 1.2em;
}

/* Traceroute Çıktı Konso */
.traceroute-output {
    background: #0f172a;
    color: #e2e8f0;
    font-family: 'Fira Code', 'Roboto Mono', monospace;
    font-size: 0.85rem;
    padding: 1rem;
    border-radius: 8px;
    height: 350px;
    overflow-y: auto;
    white-space: pre-wrap;
    display: none;
    line-height: 1.6;
    border: 1px solid #334155;
}

/* Placeholder */
.traceroute-placeholder {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: #94a3b8;
    border: 2px dashed #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
}