/* ============================================
   SAGE EMPIRE — Audiobooks Room Styles
   Cosmic reading room aesthetic
   ============================================ */

/* Search box in filter tabs */
.search-box {
    margin-left: auto;
    margin-right: 1rem;
}

.search-box input {
    background: var(--input-bg);
    border: 1px solid var(--aetherium-gold);
    color: var(--clean-white);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    width: 250px;
    font-family: inherit;
}

.search-box input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.3);
}

.search-box input::placeholder {
    color: rgba(245, 245, 245, 0.4);
}

/* Book cards specific */
.book-card .card-info h3 {
    font-size: 0.95rem;
}

.book-card .book-author {
    color: rgba(245, 245, 245, 0.8);
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.book-card .book-narrator {
    color: rgba(245, 245, 245, 0.5);
    font-size: 0.75rem;
    font-style: italic;
}

.book-card .book-duration {
    color: var(--aetherium-gold);
    font-size: 0.75rem;
    margin-top: 0.3rem;
}

/* Chapter list (future slot) */
.chapter-list {
    display: none;
    padding: 1rem;
    background: rgba(11, 12, 16, 0.9);
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.chapter-list.active {
    display: block;
}

.chapter-item {
    padding: 0.5rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.85rem;
}

.chapter-item:hover {
    background: rgba(197, 160, 89, 0.1);
}

.chapter-item.active {
    background: rgba(197, 160, 89, 0.2);
    color: var(--aetherium-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .search-box {
        width: 100%;
        margin: 0.5rem 0 0 0;
    }
    .search-box input {
        width: 100%;
    }
    .filter-tabs {
        flex-direction: column;
    }
}
