/* --- CANLI ARAMA KUTUSU (Koyu Tema Uyumlu) --- */
.search-box { 
    position: relative; 
}

.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111419; /* Senin aside ve content-body rengine yakın koyu ton */
    border: 1px solid #1e252d; /* İnce ve belli belirsiz border */
    border-radius: 8px;
    z-index: 9999;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.7); /* Derinlik hissi için güçlü gölge */
    margin-top: 8px;
}

/* Her Bir Film Satırı */
.search-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    gap: 15px;
    text-decoration: none;
    border-bottom: 1px solid #1e252d; /* Satır araları ince çizgi */
    transition: all 0.2s ease;
}

.search-item:hover {
    background: #192028; /* Hover olduğunda bir tık açılan ton */
}

/* Film Afişi */
.search-item img {
    width: 40px;
    height: 58px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #2d3748;
}

/* Bilgiler */
.search-item-info {
    flex: 1;
}

.search-item-title {
    color: #ffffff; /* Yazılar bembeyaz kalsın */
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
    font-family: 'Inter', sans-serif;
}

.search-item-meta {
    color: #94a3b8; /* Yardımcı metinler sönük gri */
    font-size: 12px;
    font-family: 'Inter', sans-serif;
}

.search-item-meta b {
    color: var(--accent); /* Senin o turkuaz/yeşil rengin */
    font-weight: 700;
}

/* Scrollbar (Koyu Temaya Özel) */
.live-search-results::-webkit-scrollbar {
    width: 5px;
}
.live-search-results::-webkit-scrollbar-track {
    background: #111419;
}
.live-search-results::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 10px;
}