.doc-downloader-container-bb7e19af {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: var(--e-global-typography-text-font-family), sans-serif;
}

.doc-search-wrapper-bb7e19af {
    width: 100%;
}

.doc-search-input-bb7e19af {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--e-global-color-primary, #7700D8A1);
    border-radius: 4px;
    font-size: 16px;
    color: var(--e-global-color-text, #8804F4CF);
    background-color: #fff;
    transition: border-color 0.2s;
    font-family: var(--e-global-typography-primary-font-family), Roboto, sans-serif;
    text-align: center;
}

.doc-search-input-bb7e19af:focus {
    outline: none;
    border-color: var(--e-global-color-accent, #61CE70B3);
}

.doc-search-input-bb7e19af::placeholder {
    color: var(--e-global-color-text, #8804F4CF);
    opacity: 0.7;
    text-align: center;
}

.doc-list-bb7e19af {
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 10px;
    background: #fdfdfd;
}

.doc-item-bb7e19af {
    padding: 12px 15px;
    margin-bottom: 5px;
    background-color: #f5f5f5;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    color: var(--e-global-color-text, #8804F4CF);
    text-align: center;
}

.doc-item-bb7e19af:last-child {
    margin-bottom: 0;
}

.doc-item-bb7e19af:hover {
    background-color: #eaeaea;
}

.doc-item-bb7e19af.is-active {
    background-color: #e6f7ff;
    border-left-color: var(--e-global-color-primary, #7700D8A1);
    font-weight: bold;
}

.doc-empty-msg-bb7e19af,
.doc-no-results-msg-bb7e19af {
    padding: 10px;
    text-align: center;
    color: #8c8c8c;
    font-style: italic;
    margin: 0;
}

.doc-btn-wrapper-bb7e19af {
    display: flex;
}

.doc-download-btn-bb7e19af {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--e-global-color-primary, #7700D8A1);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    font-family: var(--e-global-typography-primary-font-family), Roboto, sans-serif;
}

.doc-download-btn-bb7e19af:not(.disabled):hover {
    background-color: var(--e-global-color-accent, #61CE70B3);
    color: #fff;
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.doc-download-btn-bb7e19af.disabled {
    background-color: #d9d9d9;
    cursor: not-allowed;
    pointer-events: none;
    color: #8c8c8c;
}