/* Genel Stil Düzenlemeleri */
.api {
    position: fixed;
    bottom: 10px;
    left: 15px;
    z-index: 20;
}

/* Sosyal Butonlar */
.whatsapp, .telefon, .telegram, .instagram, .diller {
    position: relative;
    margin-top: 10px;
    transition: all .5s ease-in-out;
    z-index: 999;
}

.whatsapp a, .telefon a, .telegram a, .instagram a, .diller a {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    font-size: 28px;
    display: block;
    text-align: center;
    line-height: 50px;
    color: white !important;
}

.whatsapp a { background: #00c3ff; }
.telefon a { background: #00c3ff; }
.telegram a { background: #27A7E5; }
.instagram a { background: #00c3ff; }
.diller a { background: #000; }

.whatsapp:hover a, .telefon:hover a, .telegram:hover a, .instagram:hover a, .diller:hover a {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Tooltip Stil */
.whatsapp .tooltiptext, .telefon .tooltiptext, .telegram .tooltiptext, .instagram .tooltiptext, .diller .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    line-height: normal;
    font-size: 15px;
    top: 13px;
    left: 105%;
    height: auto;
}

.whatsapp:hover .tooltiptext, .telefon:hover .tooltiptext, .telegram:hover .tooltiptext, .instagram:hover .tooltiptext, .diller:hover .tooltiptext {
    visibility: visible;
}

/* Domain Modülü Stilleri */
.search-domain {
    background: linear-gradient(135deg, #004d99, #007bff);
    color: #fff;
    padding: 60px 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Domain Kartları */
.domain-type {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 0 !important;
}

.single-domain-type {
    background: linear-gradient(135deg, #00c3ff, #0056b3);
    border: 2px solid #ffffff;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    flex: 1 1 150px;
    max-width: 300px;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.single-domain-type:hover {
    background: linear-gradient(135deg, #0056b3, #00c3ff);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.single-domain-type h3 {
    font-size: 1.2rem;
    margin: 0;
    color: #ffffff;
}

.single-domain-type h3 span {
    display: block;
    font-size: 0.9rem;
    color: #ffffff;
    margin-top: 5px;
}

/* Domain Sonuçları Tablosu */
.domainBilgileri {
    background: #ffffff !important;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
    overflow-x: auto;
}

.domainBilgileri table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    border-radius: 15px;
}

.domainBilgileri th {
    background-color: #007bff !important;
    color: #ffffff !important;
    font-weight: bold;
    padding: 15px;
    text-align: center;
    border-radius: 15px 15px 0 0;
}

.domainBilgileri td {
    background-color: #ffffff !important;
    color: #333 !important;
    padding: 15px;
    border: 1px solid #ddd;
    text-align: center;
    font-weight: 600;
    border-radius: 5px;
}

/* Müsait Durumu */
.domainBilgileri td.musait {
    background-color: #e0f7e7 !important;
    color: #388e3c !important;
    font-weight: bold;
    border-radius: 5px;
}

/* Alınmış Durumu */
.domainBilgileri td.alinmis {
    background-color: #ffe4e4 !important;
    color: #d32f2f !important;
    font-weight: bold;
    border-radius: 5px;
}

/* Buton Stili */
.iletisim-btn {
    background-color: #007bff;
    color: #ffffff;
    border-radius: 10px;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    font-weight: bold;
}

.iletisim-btn:hover {
    background-color: #0056b3;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

/* Mobil Uyumluluk */
@media (max-width: 767px) {
    .search-domain-content input[type="text"],
    .search-domain-content select {
        width: 100%;
    }

    .search-domain-content form {
        flex-direction: column;
        align-items: center;
    }

    .domainBilgileri table {
        width: 100%;
        overflow-x: auto;
    }

    .domainBilgileri th, .domainBilgileri td {
        padding: 10px;
        font-size: 14px;
    }

    .single-domain-type {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
