.le-widget-container-4fe9cb4e {
    font-family: sans-serif;
    width: 100%;
}

.le-search-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 0;
}

.le-search-input {
    flex: 1;
    max-width: 500px;
    padding: 12px 20px;
    border: 1px solid #ccc;
    border-radius: 30px 0 0 30px !important;
    outline: none;
    font-size: 16px;
}

.le-search-btn {
    padding: 12px 30px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-left: none;
    border-radius: 0 30px 30px 0 !important;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.le-search-btn .btn-icon {
    display: none;
}

.le-search-btn:hover {
    background-color: #f5f5f5;
}

.le-list-header {
    margin-bottom: 10px;
    padding: 0 10px;
    font-size: 14px;
    color: #333;
}

.le-acc-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}

.le-acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #f9f9f9;
    cursor: pointer;
}

.le-acc-title {
    font-weight: 600;
    font-size: 15px;
    color: #222;
}

.le-acc-view-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e0e0e0;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
    pointer-events: none;
}

.le-acc-view-btn svg {
    transition: transform 0.3s;
}

.le-acc-item.open .le-acc-view-btn svg {
    transform: rotate(180deg);
}

.le-acc-content {
    padding: 15px;
    border-top: 1px solid #eee;
    color: #444;
    font-size: 14px;
    line-height: 1.6;
}

.le-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.le-pagination button {
    background: #fff;
    border: 1px solid #ccc;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

.le-pagination button.active {
    background: #333;
    color: #fff;
    border-color: #333;
}

.le-pagination button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.le-pag-dots {
    padding: 0 5px;
    color: #666;
}

.le-no-results {
    padding: 20px;
    text-align: center;
    color: #666;
    border: 1px dashed #ccc;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .le-acc-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .le-acc-title {
        width: 100%;
    }
    
    .le-acc-view-btn {
        align-self: flex-start;
    }
}

@media (max-width: 767px) {
    .le-search-btn .btn-text {
        display: none;
    }
    
    .le-search-btn .btn-icon {
        display: block;
    }
    
    .le-search-btn {
        padding: 12px 20px;
    }
}