/* =============================== */
/* RECHERCHE PERSONNAGE (style film) */
/* =============================== */

.personnage-heading .film-search {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    max-width: 680px;
    margin: 16px auto 0;
    position: relative;
}

.personnage-heading .film-search input[type="search"] {
    flex: 1;
    min-width: 0;
    padding: .75rem 1rem;
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 6px;
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: border-color 0.2s ease;
}

.personnage-heading .film-search input[type="search"]::placeholder {
    color: #999;
}

.personnage-heading .film-search input[type="search"]:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(10, 165, 233, 0.2);
}

.personnage-heading .film-search .btn-search {
    padding: .75rem 1.2rem;
    background: linear-gradient(135deg, #0ea5e9, #a855f7);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: filter 0.2s ease;
}

.personnage-heading .film-search .btn-search:hover {
    filter: brightness(1.1);
}

/* Résultats de recherche */
.film-search-results {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 999;
    top: 100%;
    margin-top: 6px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.film-search-results.is-open {
    display: block;
}

.film-search-item {
    display: flex;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: inherit;
    align-items: center;
    border-bottom: 1px solid #eee;
    transition: background 0.15s ease;
}

.film-search-item:last-child {
    border-bottom: none;
}

.film-search-item:hover,
.film-search-item.is-active {
    background: #eef2f7;
}

.film-search-item img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

.film-search-item .title {
    flex: 1;
    font-weight: 500;
    color: #1e293b;
}

.film-search-item .year {
    font-size: 0.875rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 4px;
}

.film-search-empty {
    padding: 24px;
    text-align: center;
    color: #64748b;
}

/* Debug box */
.debug-box {
    max-width: 1100px;
    margin: 16px auto;
    background: #0b1220;
    color: #d1e7ff;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: pre-wrap;
    font-size: 0.85rem;
    overflow: auto;
}
