.chapter-searcher-container {
    margin-left: auto;
    max-width: 380px;
    position: relative;
    width: 100%;
}

.chapter-searcher-container .searcher-form input.searcher-form__input {
    height: 43px;
}

.chapter-searcher-container .searcher-form__icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.chapter-searcher-container .searcher-form__icon svg * {
    fill: var(--color-text);
}

.searcher-results {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    padding: 24px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 10;
}

.searcher-results.show {
    display: block !important;
}

.searcher-results__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
    width: 100%;
}
