body { background-color: #f8fafc; font-family: sans-serif; padding: 40px; }
.domain-container { max-width: 900px; margin: 0 auto; }
.title { color: #334155; font-size: 24px; margin-bottom: 20px; }
/* Genel Satır Yapısı */
.domain-row {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
/* Durum Renkleri */
.domain-row.taken { border-left: 4px solid #ef4444; }
.domain-row.available { border-left: 4px solid #10b981; }
.info { display: flex; align-items: center; gap: 20px; flex: 1; }
/* İkonlar */
.status-icon {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold; font-size: 18px;
}
.taken .status-icon { background: #fee2e2; color: #ef4444; }
.available .status-icon { background: #d1fae5; color: #10b981; }
/* Metinler */
.text p { margin: 0; }
.status-main { font-size: 16px; color: #475569; }
.status-sub { font-size: 13px; color: #94a3b8; margin-top: 4px !important; }
.highlight { color: #ef4444; font-weight: 600; }
.green-bold { color: #10b981; font-weight: 600; }
.whois { font-size: 13px; color: #64748b; margin-left: 30px; }
.q-mark { color: #ef4444; font-weight: bold; }
/* Sağ Taraf: Buton */
.action { display: flex; align-items: center; gap: 30px; }
/* Butonlar */
.btn {
    border: none; border-radius: 4px; padding: 10px 20px;
    color: white; font-weight: bold; cursor: pointer;
    font-size: 12px; letter-spacing: 0.5px;
}
.transfer { background-color: #d4a017; }
.add-cart { background-color: #48bb78; }
.btn:hover { opacity: 0.9; }
/* Responsive */
@media (max-width: 768px) {
    .domain-row { flex-direction: column; text-align: center; gap: 20px; }
    .info { flex-direction: column; }
    .action { width: 100%; justify-content: space-between; }
}
/* Domain Arama Formu - Göze hoş gelen modern tasarım */
#domain-checker-container {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 0;
}

#domain-search-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 60px; /* Yuvarlak köşe */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); /* Yumuşak gölge */
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

#domain-search-form:hover,
#domain-search-form:focus-within {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

#domain-input {
    flex: 1;
    padding: 18px 30px;
    border: none;
    font-size: 18px;
    color: #333;
    background: transparent;
    outline: none;
}

#domain-input::placeholder {
    color: #a0a0a0;
    font-weight: 400;
}

#domain-input:focus {
    outline: none;
}

button[type="submit"] {
    background: #ff9800; /* Turuncu buton */
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.1s;
    white-space: nowrap;
}

button[type="submit"]:hover {
    background: #f57c00; /* Daha koyu turuncu hover */
    transform: scale(1.02);
}

button[type="submit"]:active {
    transform: scale(0.98);
}

/* Loading Spinner (isteğe bağlı stil) */
#loading-spinner {
    text-align: center;
    padding: 30px 0;
    font-size: 18px;
    color: #555;
    font-style: italic;
}

/* Responsive - Mobil için */
@media (max-width: 600px) {
    #domain-search-form {
        flex-direction: column;
        border-radius: 20px;
    }

    #domain-input {
        padding: 16px 20px;
        font-size: 16px;
        border-radius: 20px 20px 0 0;
    }

    button[type="submit"] {
        padding: 16px;
        width: 100%;
        border-radius: 0 0 20px 20px;
        font-size: 16px;
    }
}



/* Whois Sayfası Tasarımı */
.whois-main-grid { display: grid; grid-template-columns: 1.8fr 1fr; gap: 20px; margin-top: 30px; font-family: 'Inter', sans-serif; }

.whois-card { background: #fff; border: 1px solid #eef2f6; border-radius: 12px; padding: 25px; box-shadow: 0 10px 25px rgba(0,0,0,0.02); }
.w-section-title { font-size: 16px; font-weight: 700; color: #1e293b; margin-bottom: 20px; border-left: 4px solid #3b82f6; padding-left: 10px; }
.w-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 14px; color: #475569; }
.w-row span { color: #94a3b8; }
.w-hr { border: 0; border-top: 1px solid #f1f5f9; margin: 20px 0; }
.ns-box { background: #f8fafc; padding: 15px; border-radius: 8px; font-family: 'Courier New', monospace; font-size: 13px; color: #334155; line-height: 1.6; }
.prot-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.badge { font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 20px; }
.b-active { background: #dcfce7; color: #15803d; }
.b-passive { background: #fee2e2; color: #b91c1c; }

/* Whois Arama Formu */
.whois-inline-form { display: flex; gap: 10px; margin-bottom: 20px; }
.whois-inline-form input { flex: 1; padding: 12px 20px; border: 2px solid #e2e8f0; border-radius: 10px; outline: none; }
.whois-inline-form button { background: #3b82f6; color: #fff; border: none; padding: 0 30px; border-radius: 10px; cursor: pointer; font-weight: 600; }

@media (max-width: 900px) { .whois-main-grid { grid-template-columns: 1fr; } }
.whois-transfer-btn {
    display: block;
    background: #1e293b;
    color: #fff !important;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: 0.3s;
}
.whois-transfer-btn:hover { background: #3b82f6; transform: translateY(-2px); }
.badge { font-size: 10px; font-weight: bold; padding: 4px 10px; border-radius: 5px; }
.b-active { background: #dcfce7; color: #166534; }
.b-passive { background: #fee2e2; color: #991b1b; }