/* Yapay Zeka Destekli Cihaz Arama Sistemi Stil Dosyası */

/* Sonuç kartları için stil */
.result-card {
    transition: all 0.3s ease;
    border-left: 5px solid #0d6efd;
    margin-bottom: 1.5rem;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Benzerlik çubuğu */
.similarity-bar {
    height: 5px;
    background-color: #e9ecef;
    margin-bottom: 5px;
    border-radius: 2px;
}

.similarity-fill {
    height: 100%;
    background-color: #0d6efd;
    border-radius: 2px;
}

/* Form ve butonlar */
.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Sayfa animasyonları */
.card, .alert {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Arama sayfası stileri */
.navbar-brand {
    font-weight: 600;
}

.badge {
    font-weight: 500;
}

/* Detay sayfası stileri */
.breadcrumb a {
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Yapay zeka analiz bölümü */
.card-header .bi-robot {
    font-size: 1.2rem;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .card-body {
        padding: 1rem;
    }
}

/* Anahtar kelime butonları */
.badge.bg-light {
    border: 1px solid #dee2e6;
}

.badge.bg-light:hover {
    background-color: #f8f9fa !important;
}